NLAPhysicalLinkMoveState
/*
* 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