GamepadButton: pressed プロパティ
GamepadButton.pressed
は GamepadButton
インターフェイスのプロパティで、現在ボタンが押されている (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