弃用
This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the 兼容性表格 at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.

getPose() 方法在 VRDisplay interface returns a VRPose object defining the future predicted pose of the VRDisplay as it will be when the current frame is actually presented.

This method is deprecated — instead, you should use VRDisplay.getFrameData() , which also provides a VRPose 对象。

句法

var myPose = vrDisplayInstance.getPose();
					

参数

None.

返回值

A VRPose 对象。

范例

Once we have a reference to a VRDisplay object, we can retrieve the VRPose representing the current pose of the display.

if(navigator.getVRDisplays) {
  console.log('WebVR 1.1 supported');
  // Then get the displays attached to the computer
  navigator.getVRDisplays().then(function(displays) {
    // If a display is available, use it to present the scene
    if(displays.length > 0) {
      vrDisplay = displays[0];
      console.log('Display found');
          // Return the current VRPose object for the display
          var pose = vrDisplay.getPose();
          ...
    }
  });
}
					

It is however recommended that you use the non-deprecated pose 特性为 VRFrameData object (retrieved via VRDisplay.getFrameData() ) to retrieve the current pose for each frame before it is submitted to the display to be presented. This happens on each iteration of the rendering loop for your app, so you can be sure the pose data is current.

规范

规范 状态 注释
WebVR 1.1
The definition of 'getPose()' in that specification.
草案 初始定义

浏览器兼容性

更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
getPose 弃用 Chrome No Edge 15 — 79 Firefox 55
55
Windows support was enabled in Firefox 55.
64
macOS support was enabled in Firefox 64.
IE No Opera ? Safari No WebView Android No Chrome Android 56 — 80 Disabled
不支持 56 — 80 Disabled
Only works in an experimental version of Chrome . (Other builds won't return any devices when Navigator.getVRDisplays() is invoked.)
Daydream View supported in Chrome 56.
Google Cardboard supported in Chrome 57.
Disabled From version 56 until version 80 (exclusive): this feature is behind the WebVR preference. To change preferences in Chrome, visit chrome://flags.
Firefox Android 55 Opera Android ? Safari iOS ? Samsung Internet Android 6.0
6.0
Google Cardboard supported in Samsung Internet 7.0.

图例

完整支持

完整支持

不支持

不支持

兼容性未知 ?

兼容性未知

实验。期望将来行为有所改变。

实验。期望将来行为有所改变。

弃用。不要用于新网站。

弃用。不要用于新网站。

见实现注意事项。

用户必须明确启用此特征。

用户必须明确启用此特征。

另请参阅

元数据

  • 最后修改: