This commit is contained in:
ikpil 2023-08-19 14:55:15 +09:00
parent 262a101921
commit 6c97161746
2 changed files with 9 additions and 3 deletions

View File

@ -33,6 +33,7 @@ namespace DotRecast.Detour.TileCache.Test;
public class AbstractTileCacheTest
{
private const int EXPECTED_LAYERS_PER_TILE = 4;
private readonly float m_cellSize = 0.3f;
private readonly float m_cellHeight = 0.2f;
private readonly float m_agentHeight = 2.0f;
@ -57,13 +58,15 @@ public class AbstractTileCacheTest
option.maxSimplificationError = m_edgeMaxError;
option.maxTiles = tw * th * EXPECTED_LAYERS_PER_TILE;
option.maxObstacles = 128;
DtNavMeshParams navMeshParams = new DtNavMeshParams();
navMeshParams.orig = geom.GetMeshBoundsMin();
navMeshParams.tileWidth = m_tileSize * m_cellSize;
navMeshParams.tileHeight = m_tileSize * m_cellSize;
navMeshParams.maxTiles = 256;
navMeshParams.maxPolys = 16384;
DtNavMesh navMesh = new DtNavMesh(navMeshParams, 6);
var navMesh = new DtNavMesh(navMeshParams, 6);
var comp = DtTileCacheCompressorForTestFactory.Shared.Get(cCompatibility);
var storageParams = new DtTileCacheStorageParams(order, cCompatibility);
var process = new TestTileCacheMeshProcess();

View File

@ -1,4 +1,6 @@
namespace DotRecast.Detour.TileCache.Test;
using DotRecast.Recast.Geom;
namespace DotRecast.Detour.TileCache.Test;
public class TestTileCacheMeshProcess : IDtTileCacheMeshProcess
{
@ -10,3 +12,4 @@ public class TestTileCacheMeshProcess : IDtTileCacheMeshProcess
}
}
}