interface RegionMovementSegment {
    from: ElevatedPoint;
    teleport: boolean;
    to: ElevatedPoint;
    type: RegionMovementSegmentType;
}

Properties

Properties

from: ElevatedPoint

The waypoint that this segment starts from.

teleport: boolean

Teleport between the waypoints?

to: ElevatedPoint

The waypoint that this segment goes to.

The type of this segment (see CONST.REGION_MOVEMENT_SEGMENTS).