Strata - v1.4.10
    Preparing search index...

    Interface PathResult

    Result of a pathfinding operation.

    interface PathResult {
        cost: number;
        found: boolean;
        nodeCount: number;
        path: NodeId[];
        positions: Position3D[];
    }
    Index

    Properties

    cost: number

    Total path cost

    found: boolean

    Whether a path was found

    nodeCount: number

    Number of nodes in the path

    path: NodeId[]

    Array of node IDs forming the path

    positions: Position3D[]

    Array of 3D positions along the path