Skip to content

Latest commit

 

History

History
55 lines (40 loc) · 2.43 KB

File metadata and controls

55 lines (40 loc) · 2.43 KB
title slug
VRDisplay.isPresenting
Web/API/VRDisplay/isPresenting

{{APIRef("WebVR API")}}{{Deprecated_Header}}

isPresenting は {{domxref("VRDisplay")}} インターフェイスの読み取り専用プロパティで、 VRDisplay が現在コンテンツを表示中かどうかを示す論理値を返します。

Note

このプロパティは、古い WebVR API の一部でした。 WebXR Device APIに置き換えられました。

論理値です。 true の場合はそのディスプレイが表示中であることを意味します。 false はそうではないことを示します。

function onVRExitPresent() {
  // No sense in exiting presentation if we're not actually presenting.
  // (This may happen if we get an event like vrdisplaydeactivate when
  // we weren't presenting.)
  if (!vrDisplay.isPresenting) return;
  vrDisplay.exitPresent().then(
    function () {
      // Nothing to do because we're handling things in onVRPresentChange.
    },
    function (err) {
      var errMsg = "exitPresent failed.";
      if (err && err.message) {
        errMsg += "<br/>" + err.message;
      }
      VRSamplesUtil.addError(errMsg, 2000);
    },
  );
}

Note

このコードスニペットは Google's VR Presentation demo から取ったものです。

仕様書

このインターフェイスは、古い WebVR API の一部でしたが、 WebXR Device API に置き換えられました。標準化される予定はありません。

すべてのブラウザーが新しい WebXR API を実装するまで、すべてのブラウザーで動作する WebXR アプリケーションを開発するには、A-FrameBabylon.jsThree.js などのフレームワークを利用したり、ポリフィルを利用したりすると良いでしょう [1]

ブラウザーの互換性

{{Compat}}

関連情報