Add unit test for ModelTool::DetectLodIndex and improve LOD index detection further

#765
This commit is contained in:
Wojtek Figat
2022-10-29 11:38:20 +02:00
parent bd562a374a
commit 5cfe3b88c7
3 changed files with 37 additions and 8 deletions

View File

@@ -2,6 +2,7 @@
using System.Collections.Generic;
using Flax.Build;
using Flax.Build.NativeCpp;
/// <summary>
/// Engine tests module.
@@ -14,6 +15,14 @@ public class Tests : EngineModule
Deploy = false;
}
/// <inheritdoc />
public override void Setup(BuildOptions options)
{
base.Setup(options);
options.PrivateDependencies.Add("ModelTool");
}
/// <inheritdoc />
public override void GetFilesToDeploy(List<string> files)
{