Interface Waypoint

Unifies Waypoints of the pathing algorithms

Author

Lukas Scheuerle, HFU, 2024

interface Waypoint {
    connections: Connection[];
    isActive: boolean;
    mtxLocal: Matrix4x4;
    mtxWorld: Matrix4x4;
}

Implemented by

Properties

connections: Connection[]
isActive: boolean
mtxLocal: Matrix4x4
mtxWorld: Matrix4x4