PathfindingStatus

public enum PathfindingStatus

Observable state of a PathfindingHandle.

Entries

Link copied to clipboard

No destination is assigned.

Link copied to clipboard

A destination is assigned, but another goal or combat target currently owns movement.

Link copied to clipboard

Native navigation is following a complete path.

Link copied to clipboard

The entity reached the destination within the adapter's arrival tolerance.

Link copied to clipboard

Native navigation could not create a complete path.

Link copied to clipboard

Native navigation ended before the entity reached the destination.

Link copied to clipboard

The entity stopped making meaningful progress while navigation was active.

Link copied to clipboard

The handle was disposed and cannot accept another destination.

Functions

Link copied to clipboard
public static PathfindingStatus valueOf(String name)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
public static Array<PathfindingStatus> values()

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.