forked from mirror/DotRecast
24 lines
648 B
C#
24 lines
648 B
C#
using DotRecast.Core.Numerics;
|
|
|
|
namespace DotRecast.Detour
|
|
{
|
|
public class DtQueryNoOpFilter : IDtQueryFilter
|
|
{
|
|
public static readonly DtQueryNoOpFilter Shared = new DtQueryNoOpFilter();
|
|
|
|
private DtQueryNoOpFilter()
|
|
{
|
|
}
|
|
|
|
public bool PassFilter(long refs, DtMeshTile tile, DtPoly poly)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public float GetCost(RcVec3f pa, RcVec3f pb, long prevRef, DtMeshTile prevTile, DtPoly prevPoly, long curRef,
|
|
DtMeshTile curTile, DtPoly curPoly, long nextRef, DtMeshTile nextTile, DtPoly nextPoly)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
} |