interface TokenFindMovementPathWaypoint {
    action?: string;
    checkpoint?: boolean;
    elevation?: number;
    explicit?: boolean;
    height?: number;
    shape?: TokenShapeType;
    snapped?: boolean;
    width?: number;
    x?: number;
    y?: number;
}

Properties

action?: string

The movement action from the previous to this waypoint.

checkpoint?: boolean

Is this waypoint a checkpoint? Default: false.

elevation?: number

The elevation in grid units. Default: the previous or source elevation.

explicit?: boolean

Was this waypoint explicitly placed by the user? Default: false.

height?: number

The height in grid spaces (positive). Default: the previous or source height.

The shape type (see CONST.TOKEN_SHAPES). Default: the previous or source shape.

snapped?: boolean

Was this waypoint snapped to the grid? Default: false.

width?: number

The width in grid spaces (positive). Default: the previous or source width.

x?: number

The top-left x-coordinate in pixels (integer). Default: the previous or source x-coordinate.

y?: number

The top-left y-coordinate in pixels (integer). Default: the previous or source y-coordinate.