Dispatched when the player dimensions are updated.

interface DimensionChangeEvent {
    date: Date;
    height: number;
    type: DIMENSION_CHANGE;
    width: number;
}

Hierarchy (view full)

Properties

Properties

date: Date

The creation date of the event.

height: number

The player's current height.

The type of the event.

width: number

The player's current width.