navcat docs
    Preparing search index...

    Type Alias SearchNode

    type SearchNode = {
        cost: number;
        flags: number;
        nodeRef: NodeRef;
        parentNodeRef: NodeRef | null;
        parentState: number | null;
        position: Vec3;
        state: number;
        total: number;
    }
    Index

    Properties

    cost: number

    the cost from the previous node to this node

    flags: number

    node flags

    nodeRef: NodeRef

    the node ref for this search node

    parentNodeRef: NodeRef | null

    the parent node ref

    parentState: number | null

    the parent node state

    position: Vec3

    the position of the node

    state: number

    node state

    total: number

    the cost up to this node