DotRecastNetSim/test/DotRecast.Detour.TileCache..../TestTileCacheMeshProcess.cs

16 lines
320 B
C#
Raw Normal View History

2023-08-19 08:55:15 +03:00
using DotRecast.Recast.Geom;
namespace DotRecast.Detour.TileCache.Test;
2023-08-19 06:48:02 +03:00
public class TestTileCacheMeshProcess : IDtTileCacheMeshProcess
{
public void Process(DtNavMeshCreateParams option)
{
for (int i = 0; i < option.polyCount; ++i)
{
option.polyFlags[i] = 1;
}
}
2023-08-19 08:55:15 +03:00
}