Version: 2020.3
LanguageEnglish
  • C#

PathQueryStatus

enumeration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

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.

Properties

FailureThe operation has failed.
SuccessThe operation was successful.
InProgressThe operation is in progress.
StatusDetailMaskBitmask that has 0 set for the Success, Failure and InProgress bits and 1 set for all the other flags.
WrongMagicData in the NavMesh cannot be recognized and used.
WrongVersionData in the NavMesh world has a wrong version.
OutOfMemoryOperation ran out of memory.
InvalidParamA parameter did not contain valid information, useful for carring out the NavMesh query.
BufferTooSmallThe node buffer of the query was too small to store all results.
OutOfNodesQuery ran out of node stack space during a search.
PartialResultQuery did not reach the end location, returning best guess.