Navigation
API > API/Plugins > API/Plugins/Mover
Options for what to do when we find ourselves off the nav mesh
| Name | EOffNavMeshBehavior |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/Mover/Source/Mover/Public/DefaultMovementSet/Modes/NavWalkingMode.h |
| Include Path | #include "DefaultMovementSet/Modes/NavWalkingMode.h" |
Syntax
enum EOffNavMeshBehavior
{
SwitchToWalking = 0,
MoveWithoutNavMesh = 1,
DoNotMove = 2,
RotateOnly = 3,
}
Values
| Name | Remarks |
|---|---|
| SwitchToWalking | We change to normal walking mode and re-attempt the move. |
| MoveWithoutNavMesh | We proceed to move as directed, but height may diverge from the floor until we return to a valid nav mesh. |
| DoNotMove | We do not move. Movement will continue once instructed to move over nav mesh again. |
| RotateOnly | We do not move, but will allow rotation in place. |