aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/gamepadevent/index.html
blob: 7b53c17c45ee751c91a67efebebc4220dd35b9d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
title: GamepadEvent
slug: Web/API/GamepadEvent
tags:
  - API
  - Gamepad API
  - Games
  - Interface
  - Reference
translation_of: Web/API/GamepadEvent
---
<p>{{APIRef("Gamepad API")}}</p>

<p>Gamepad API の GamepadEvent インターフェースは、<span class="tlid-translation translation"><span title="">システムに接続されているゲームパッドへの参照が含まれています。これは、ゲームパッドイベント </span></span>{{domxref("Window.gamepadconnected")}} <span class="tlid-translation translation"><span title=""> と </span></span>{{domxref("Window.gamepaddisconnected")}}<span class="tlid-translation translation"><span title=""> が応答して発生するものです。</span></span></p>

<h2 id="コンストラクタ">コンストラクタ</h2>

<dl>
 <dt>{{domxref("GamepadEvent.GamepadEvent","GamepadEvent()")}}</dt>
 <dd>新しい <code>GamepadEvent</code> オブジェクトを返します。</dd>
</dl>

<h2 id="プロパティ">プロパティ</h2>

<dl>
 <dt>{{ domxref("GamepadEvent.gamepad") }} {{readonlyInline}}</dt>
 <dd><span class="tlid-translation translation"><span title="">発生したイベントの関連するゲームパッドデータへのアクセスを提供する </span></span>{{ domxref("Gamepad") }}<span class="tlid-translation translation"><span title=""> オブジェクトを返します。</span></span></dd>
</dl>

<h2 id="例"></h2>

<p><span class="tlid-translation translation"><span title="">ゲームパッドプロパティは、起動された </span></span>{{domxref("Window.gamepadconnected")}}<span class="tlid-translation translation"><span title=""> イベントで呼び出されます。</span></span></p>

<pre class="brush: js">window.addEventListener("gamepadconnected", function(e) {
  console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.",
  e.gamepad.index, e.gamepad.id,
  e.gamepad.buttons.length, e.gamepad.axes.length);
});</pre>

<p>また {{domxref("Window.gamepaddisconnected")}} イベントでも呼び出されます。</p>

<pre class="brush: js">window.addEventListener("gamepaddisconnected", function(e) {
  console.log("Gamepad disconnected from index %d: %s",
  e.gamepad.index, e.gamepad.id);
});</pre>

<h2 id="仕様">仕様</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様</th>
   <th scope="col">状態</th>
   <th scope="col">コメント</th>
  </tr>
  <tr>
   <td>{{SpecName("Gamepad", "#gamepadevent-interface", "GamepadEvent")}}</td>
   <td>{{Spec2("Gamepad")}}</td>
   <td>初版</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザの互換性</h2>

<p>{{Compat("api.GamepadEvent")}}</p>

<h2 id="参照">参照</h2>

<p><a href="/docs/Web/Guide/API/Gamepad">Gamepad API の利用</a></p>