Interface ButtonState

interface ButtonState {
    justPressed: boolean;
    justReleased: boolean;
    pressed: boolean;
    released: boolean;
}

Hierarchy (view full)

Properties

justPressed: boolean
justReleased: boolean
pressed: boolean
released: boolean