Bit flags representing the resulting state of NavMeshQuery operations.
The main values are Success
, Failure
and InProgress
. A status will usually have only one of these main flags set. The secondary flags (details) are set when specific issues have been encountered during the operation. StatusDetailMask
is a bit mask that can be used to filter out these secondary flags.
Note: Issues highlighted by the presence of certain detail flags in certain situations might refer to internal structures outside the control of users, thus they will not always be able to mitigate them by taking the necessary actions in their code. Ways for handling these situations will be made available in the future.
Failure | The operation has failed. |
Success | The operation was successful. |
InProgress | The operation is in progress. |
StatusDetailMask | Bitmask that has 0 set for the Success, Failure and InProgress bits and 1 set for all the other flags. |
WrongMagic | Data in the NavMesh cannot be recognized and used. |
WrongVersion | Data in the NavMesh world has a wrong version. |
OutOfMemory | Operation ran out of memory. |
InvalidParam | A parameter did not contain valid information, useful for carring out the NavMesh query. |
BufferTooSmall | The node buffer of the query was too small to store all results. |
OutOfNodes | Query ran out of node stack space during a search. |
PartialResult | Query did not reach the end location, returning best guess. |