forked from bit/DotRecastNetSim
typo
This commit is contained in:
parent
262a101921
commit
6c97161746
|
@ -33,6 +33,7 @@ namespace DotRecast.Detour.TileCache.Test;
|
||||||
public class AbstractTileCacheTest
|
public class AbstractTileCacheTest
|
||||||
{
|
{
|
||||||
private const int EXPECTED_LAYERS_PER_TILE = 4;
|
private const int EXPECTED_LAYERS_PER_TILE = 4;
|
||||||
|
|
||||||
private readonly float m_cellSize = 0.3f;
|
private readonly float m_cellSize = 0.3f;
|
||||||
private readonly float m_cellHeight = 0.2f;
|
private readonly float m_cellHeight = 0.2f;
|
||||||
private readonly float m_agentHeight = 2.0f;
|
private readonly float m_agentHeight = 2.0f;
|
||||||
|
@ -57,13 +58,15 @@ public class AbstractTileCacheTest
|
||||||
option.maxSimplificationError = m_edgeMaxError;
|
option.maxSimplificationError = m_edgeMaxError;
|
||||||
option.maxTiles = tw * th * EXPECTED_LAYERS_PER_TILE;
|
option.maxTiles = tw * th * EXPECTED_LAYERS_PER_TILE;
|
||||||
option.maxObstacles = 128;
|
option.maxObstacles = 128;
|
||||||
|
|
||||||
DtNavMeshParams navMeshParams = new DtNavMeshParams();
|
DtNavMeshParams navMeshParams = new DtNavMeshParams();
|
||||||
navMeshParams.orig = geom.GetMeshBoundsMin();
|
navMeshParams.orig = geom.GetMeshBoundsMin();
|
||||||
navMeshParams.tileWidth = m_tileSize * m_cellSize;
|
navMeshParams.tileWidth = m_tileSize * m_cellSize;
|
||||||
navMeshParams.tileHeight = m_tileSize * m_cellSize;
|
navMeshParams.tileHeight = m_tileSize * m_cellSize;
|
||||||
navMeshParams.maxTiles = 256;
|
navMeshParams.maxTiles = 256;
|
||||||
navMeshParams.maxPolys = 16384;
|
navMeshParams.maxPolys = 16384;
|
||||||
DtNavMesh navMesh = new DtNavMesh(navMeshParams, 6);
|
|
||||||
|
var navMesh = new DtNavMesh(navMeshParams, 6);
|
||||||
var comp = DtTileCacheCompressorForTestFactory.Shared.Get(cCompatibility);
|
var comp = DtTileCacheCompressorForTestFactory.Shared.Get(cCompatibility);
|
||||||
var storageParams = new DtTileCacheStorageParams(order, cCompatibility);
|
var storageParams = new DtTileCacheStorageParams(order, cCompatibility);
|
||||||
var process = new TestTileCacheMeshProcess();
|
var process = new TestTileCacheMeshProcess();
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
namespace DotRecast.Detour.TileCache.Test;
|
using DotRecast.Recast.Geom;
|
||||||
|
|
||||||
|
namespace DotRecast.Detour.TileCache.Test;
|
||||||
|
|
||||||
public class TestTileCacheMeshProcess : IDtTileCacheMeshProcess
|
public class TestTileCacheMeshProcess : IDtTileCacheMeshProcess
|
||||||
{
|
{
|
||||||
|
@ -10,3 +12,4 @@ public class TestTileCacheMeshProcess : IDtTileCacheMeshProcess
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue