Interface IHasPosition

A hit object that has a position.

interface IHasPosition {
    endPosition: Vector2;
    endX: number;
    startPosition: Vector2;
    startX: number;
    startY: number;
}

Hierarchy (view full)

Properties

endPosition: Vector2

The position at which hit object ends.

endX: number

Ending X-position of the hit object.

startPosition: Vector2

The position at which hit object starts.

startX: number

Starting X-position of the hit object.

startY: number

Starting Y-position of the hit object.