web api instance property
GamepadButton: pressed property
Secure context
The GamepadButton.pressed property of the
GamepadButton interface returns a boolean indicating whether
the button is currently pressed (true) or unpressed (false).
Examples
let gp = navigator.getGamepads()[0]; // Get the first gamepad object
if (gp.buttons[0].pressed) {
// respond to button being pressed
}
Value
A boolean value.
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.