NLAPhysicalLinkMoveState
This enumeration describes the current traversal state of a Navigation Link within the Navigation Link Array system. It is primarily used in the OnPhysicalLinkMoveStateChanged
event to signal whether an Agent (typically driven by a PathFollowingComponent
) has started or completed traversing a navigation link.
/*
* Describes the Move State of a Nav Link.
*/
UENUM(BlueprintType)
enum class ENLAPhysicalLinkMoveState : uint8
{
// The PathFollowing is not using a Nav Link.
MoveFinished = 0,
// The PathFollowing is using a Nav Link.
MoveStarted = 1
};
Last updated