GamepadButton: pressed プロパティ

GamepadButton.pressedGamepadButton インターフェイスのプロパティで、現在ボタンが押されている (true) か、押されていない (false) かを示す論理値を返します。

js
let gp = navigator.getGamepads()[0]; // 最初のゲームパッドオブジェクトを取得

if (gp.buttons[0].pressed) {
  // 押されているボタンに反応
}

論理値です。

仕様書

Specification
Gamepad
# dom-gamepadbutton-pressed

ブラウザーの互換性

BCD tables only load in the browser

関連情報