Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
properly parse the lod variable in the search string before compression
Browse files Browse the repository at this point in the history
  • Loading branch information
sambaas committed Aug 8, 2022
1 parent a266ec0 commit b67bac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TileBakeLibrary/CityJSONToTileConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ private static void WriteParsingStatusToConsole(int skipped, int done, int parsi
/// </summary>
public void CompressFiles()
{
var filter = "*{lod}.bin";
var filter = $"*{lod}.bin";

//List the files that we are going to parse
string[] binFiles = Directory.GetFiles(Path.GetDirectoryName(outputPath), filter);
Expand Down

0 comments on commit b67bac8

Please sign in to comment.