blob: c042964ee0a2a9173c2f6d2cdf3d9e08160f8936 (
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
|
---
title: Gamepad.displayId
slug: Web/API/Gamepad/displayId
tags:
- API
- Experimental
- Gamepad
- Property
- Reference
- VR
- Virtual Reality
- WebVR
- displayId
translation_of: Web/API/Gamepad/displayId
---
<p>{{DefaultAPISidebar("WebVR API")}}{{SeeCompatTable}}</p>
<p>{{domxref("Gamepad")}} インターフェイスの <strong><code>displayId</code></strong> 読取専用プロパティは <dfn>{{domxref("VRDisplay")}}</dfn> に関連付けられた<dfn> {{domxref("VRDisplay.displayId")}} を返します — <code>VRDisplay</code> は表示されるシーンをそのゲームパッドで操作します.</dfn></p>
<h2 id="シンタックス">シンタックス</h2>
<pre class="brush: js notranslate">var myDisplayId = gamepadInstance.displayId;</pre>
<h3 id="値">値</h3>
<p>関連付けされている {{domxref("VRDisplay.displayId")}} を表すlong値です.</p>
<h2 id="例">例</h2>
<pre class="notranslate"><code>window.addEventListener("gamepadconnected", function(e) {
if(!e.gamepad.displayId) {
console.log('Gamepad connected');
} else {
console.log('Gamepad connected, associated with VR display ' + e.gamepad.displayId);
}
});</code></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('WebVR', '#gamepad-getvrdisplays-attribute', 'displayId')}}</td>
<td>{{Spec2('WebVR')}}</td>
<td>初回翻訳</td>
</tr>
</tbody>
</table>
<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
<p>{{Compat("api.Gamepad.displayId")}}</p>
<h2 id="参照">参照</h2>
<ul>
<li><a href="/ja/docs/Web/API/WebVR_API">WebVR API homepage</a>.</li>
<li><a href="http://mozvr.com/">MozVr.com</a> — Mozilla VRチームのデモ,ダウンロード,その他のリソース.</li>
</ul>
|