Gamepad: vibrationActuator プロパティ
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
非標準: この機能は標準化されていません。非標準の機能はブラウザーの対応が限られ、将来的に変更または削除される可能性があるため、本番環境での使用は推奨されません。ただし、標準の選択肢が存在しない特定のケースでは、有効な代替手段となる場合があります。
vibrationActuator
は Gamepad
インターフェイスの読み取り専用プロパティで、このコントローラーで利用できる触覚フィードバックハードウェアを表す GamepadHapticActuator
オブジェクトを返します。
値
GamepadHapticActuator
オブジェクトです。
例
js
const gamepad = navigator.getGamepads()[0];
gamepad.vibrationActuator.playEffect("dual-rumble", {
startDelay: 0,
duration: 200,
weakMagnitude: 1.0,
strongMagnitude: 1.0,
});
仕様書
Specification |
---|
Gamepad # dom-gamepad-vibrationactuator |