navcat docs
    Preparing search index...

    Type Alias FindSmoothPathResult

    type FindSmoothPathResult = {
        endNodeRef: NodeRef | null;
        endPosition: Vec3;
        flags: FindSmoothPathResultFlags;
        nodePath: FindNodePathResult | null;
        path: SmoothPathPoint[];
        startNodeRef: NodeRef | null;
        startPosition: Vec3;
        success: boolean;
    }
    Index

    Properties

    endNodeRef: NodeRef | null

    the end poly node ref

    endPosition: Vec3

    the end closest point

    the status flags of the smooth pathfinding operation

    nodePath: FindNodePathResult | null

    the node path result

    the path points

    startNodeRef: NodeRef | null

    the start poly node ref

    startPosition: Vec3

    the start closest point

    success: boolean

    whether the search completed successfully