Chartbreaker
    Preparing search index...

    Interface GamepadButton

    The GamepadButton interface defines an individual button of a gamepad or other controller, allowing access to the current state of different types of buttons available on the control device.

    MDN Reference

    interface GamepadButton {
        pressed: boolean;
        touched: boolean;
        value: number;
    }
    Index

    Properties

    Properties

    pressed: boolean

    The GamepadButton.pressed property of the the button is currently pressed (true) or unpressed (false).

    MDN Reference

    touched: boolean

    The touched property of the a button capable of detecting touch is currently touched (true) or not touched (false).

    MDN Reference

    value: number

    The GamepadButton.value property of the current state of analog buttons on many modern gamepads, such as the triggers.

    MDN Reference