iterations | Maximum number of nodes to be traversed by the search algorithm during this call. |
iterationsPerformed | Outputs the actual number of nodes that have been traversed during this call. |
PathQueryStatus
InProgress
if the search needs to continue further by calling UpdateFindPath
again.
Success
if the search is completed and a path has been found or not.
Failure
if the search for the desired position could not be completed because the NavMesh has changed significantly since the search was initiated.
Additionally the returned value can contain the OutOfNodes
flag when the pathNodePoolSize
parameter for the NavMeshQuery initialization was not large enough to accommodate the search space.
Continues a path search that is in progress.
The operation needs to have been initialized previously with NavMeshQuery.BeginFindPath and it will run until the entire route is found or the specified number of iterations have been executed.
As long as the previous call returned a state of InProgress
this method can be called repeatedly, across different frames, until the operation is successful. Use NavMeshQuery.EndFindPath afterwards to prepare the path data for retrieval, along with the number of contained nodes.
Additional resources: PathQueryStatus.