Home > server > PathfindingOptions
Options for the PathfindingEntityController.pathfind() method.
Signature:
export type PathfindingOptions = {
debug?: boolean;
maxFall?: number;
maxJump?: number;
maxOpenSetIterations?: number;
pathfindAbortCallback?: PathfindAbortCallback;
pathfindCompleteCallback?: PathfindCompleteCallback;
verticalPenalty?: number;
waypointMoveCompleteCallback?: WaypointMoveCompleteCallback;
waypointMoveSkippedCallback?: WaypointMoveSkippedCallback;
waypointTimeoutMs?: number;
};References: PathfindAbortCallback, PathfindCompleteCallback, WaypointMoveCompleteCallback, WaypointMoveSkippedCallback