Combines properties of MouseMovableOption and MouseKeyOption.

interface MouseMoveAndKeyOption {
    key?: MouseKeyType;
    space?: ScreenPositionSpace;
    x: number;
    y: number;
}

Hierarchy (view full)

Properties

Properties

The key type for the mouse action.

The position space for the mouse action.

x: number

The x-coordinate for the mouse position.

y: number

The y-coordinate for the mouse position.