navcat docs
    Preparing search index...

    Type Alias NavMeshLink

    type NavMeshLink = {
        allocated: boolean;
        bmax: number;
        bmin: number;
        edge: number;
        fromNodeIndex: number;
        fromNodeRef: NodeRef;
        index: number;
        side: number;
        toNodeIndex: number;
        toNodeRef: NodeRef;
    }
    Index

    Properties

    allocated: boolean

    whether the nav mesh link is allocated

    bmax: number

    if a boundary link, defines the max sub-edge area

    bmin: number

    if a boundary link, defines the min sub-edge area

    edge: number

    index of the polygon edge that owns this link

    fromNodeIndex: number

    the node index that owns this link

    fromNodeRef: NodeRef

    node reference that owns this link

    index: number

    the index of the link

    side: number

    if a boundary link, defines on which side the link is

    toNodeIndex: number

    index of the neighbour node that ref links to

    toNodeRef: NodeRef

    the neighbour node reference that ref links to