forked from mirror/DotRecast
Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
|
01031554d1 | |
|
01ff8806cd | |
|
f5fc9f6c2f |
|
@ -25,7 +25,7 @@ namespace DotRecast.Detour.Crowd
|
||||||
|
|
||||||
public int pathQueueSize = 32; // Max number of path requests in the queue
|
public int pathQueueSize = 32; // Max number of path requests in the queue
|
||||||
public int maxFindPathIterations = 100; // Max number of sliced path finding iterations executed per update (used to handle longer paths and replans)
|
public int maxFindPathIterations = 100; // Max number of sliced path finding iterations executed per update (used to handle longer paths and replans)
|
||||||
public int maxTargetFindPathIterations = 20; // Max number of sliced path finding iterations executed per agent to find the initial path to target
|
public int maxTargetFindPathIterations = 100; // Max number of sliced path finding iterations executed per agent to find the initial path to target
|
||||||
public float topologyOptimizationTimeThreshold = 0.5f; // Min time between topology optimizations (in seconds)
|
public float topologyOptimizationTimeThreshold = 0.5f; // Min time between topology optimizations (in seconds)
|
||||||
public int checkLookAhead = 10; // The number of polygons from the beginning of the corridor to check to ensure path validity
|
public int checkLookAhead = 10; // The number of polygons from the beginning of the corridor to check to ensure path validity
|
||||||
public float targetReplanDelay = 1.0f; // Min time between target re-planning (in seconds)
|
public float targetReplanDelay = 1.0f; // Min time between target re-planning (in seconds)
|
||||||
|
|
|
@ -25,7 +25,7 @@ namespace DotRecast.Detour.Crowd
|
||||||
/// @ingroup crowd
|
/// @ingroup crowd
|
||||||
/// @see dtQueryFilter, dtCrowd::GetFilter() dtCrowd::GetEditableFilter(),
|
/// @see dtQueryFilter, dtCrowd::GetFilter() dtCrowd::GetEditableFilter(),
|
||||||
/// dtCrowdAgentParams::queryFilterType
|
/// dtCrowdAgentParams::queryFilterType
|
||||||
public const int DT_CROWD_MAX_QUERY_FILTER_TYPE = 16;
|
public const int DT_CROWD_MAX_QUERY_FILTER_TYPE = 32;
|
||||||
|
|
||||||
public const int MAX_ITERS_PER_UPDATE = 100;
|
public const int MAX_ITERS_PER_UPDATE = 100;
|
||||||
public const int MAX_PATHQUEUE_NODES = 4096;
|
public const int MAX_PATHQUEUE_NODES = 4096;
|
||||||
|
|
|
@ -2077,19 +2077,11 @@ namespace DotRecast.Detour
|
||||||
fromType = 0;
|
fromType = 0;
|
||||||
toType = 0;
|
toType = 0;
|
||||||
|
|
||||||
var status = m_nav.GetTileAndPolyByRef(from, out var fromTile, out var fromPoly);
|
m_nav.GetTileAndPolyByRefUnsafe(from, out var fromTile, out var fromPoly);
|
||||||
if (status.Failed())
|
|
||||||
{
|
|
||||||
return DtStatus.DT_FAILURE | DtStatus.DT_INVALID_PARAM;
|
|
||||||
}
|
|
||||||
|
|
||||||
fromType = fromPoly.GetPolyType();
|
fromType = fromPoly.GetPolyType();
|
||||||
|
|
||||||
status = m_nav.GetTileAndPolyByRef(to, out var toTile, out var toPoly);
|
m_nav.GetTileAndPolyByRefUnsafe(to, out var toTile, out var toPoly);
|
||||||
if (status.Failed())
|
|
||||||
{
|
|
||||||
return DtStatus.DT_FAILURE | DtStatus.DT_INVALID_PARAM;
|
|
||||||
}
|
|
||||||
|
|
||||||
toType = toPoly.GetPolyType();
|
toType = toPoly.GetPolyType();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue