--- title: VRLayerInit.rightBounds slug: Web/API/VRLayer/rightBounds tags: - API - Experimental - Property - Refe - VR - VRLayerInit - Virtual Reality - WebVR - rightBounds translation_of: Web/API/VRLayerInit/rightBounds ---
{{APIRef("WebVR API")}}{{SeeCompatTable}}

{{domxref("VRLayerInit")}} インターフェイス (辞書) の rightBounds プロパティは、 {{domxref("VRDisplay")}} によってコンテンツが表示されるキャンバスの右のテクスチャ境界を定義します。

構文

var myVRLayerInit = { };
myVRLayerInit.rightBounds = [0.5, 0.0, 0.5, 1.0];

4つの浮動小数点値の配列で 0.0–1.0 の値を取ることができます:

  1. 境界の左オフセット。
  2. 境界の上オフセット。
  3. 境界の幅。
  4. 境界の高さ。

辞書で leftBounds が指定されていない場合、使用されるデフォルト値は [0.5, 0.0, 0.5, 1.0] です。

{{page("/Web/API/VRLayerInit", "Examples")}}

仕様

仕様 ステータス 備考
{{SpecName('WebVR 1.1', '#dom-vrlayerinit-rightbounds', 'rightBounds')}} {{Spec2('WebVR 1.1')}} 初回定義

ブラウザー実装状況

{{Compat("api.VRLayerInit.rightBounds")}}

関連項目