ecspresso
    Preparing search index...

    Interface FindPathOptions

    interface FindPathOptions {
        blockedCells?: Set<number>;
        goalTolerance?: number;
        maxNodesExpanded?: number;
    }
    Index

    Properties

    blockedCells?: Set<number>

    Dynamic per-call obstacles layered on top of the static grid.

    goalTolerance?: number

    Accept arrival within N cells of goal (topology-aware distance). Default 0.

    maxNodesExpanded?: number

    Cap on A* node expansions; returns null if exceeded. Default 10_000.