PathStatus
The success of a Path generated by PathfindingService.
Items
Name | Value | Summary |
---|---|---|
Success | 0 | Path found successfully. |
ClosestNoPath | 1 | Path doesn't exist, returns path to closest point. |
ClosestOutOfRange | 2 | Goal is out of MaxDistance range, returns path to closest point you can reach within MaxDistance. |
FailStartNotEmpty | 3 | Failed to compute path; the starting point is not empty. |
FailFinishNotEmpty | 4 | Failed to compute path; the finish point is not empty. |
NoPath | 5 | Path doesn't exist. |