VRPose:angularVelocity 属性

已弃用: 不再推荐使用此功能。尽管某些浏览器可能仍然支持它,但它可能已从相关的 Web 标准中删除,可能正在被弃用,或者可能仅出于兼容性目的而保留。避免使用它,并尽可能更新现有代码;请参阅此页面底部的兼容性表格以指导您的决策。请注意,此功能可能随时停止工作。

非标准: 此功能是非标准的,并且不在标准轨道上。请勿在面向 Web 的生产网站上使用它:它不会对每个用户都起作用。实现之间也可能存在很大的不兼容性,并且行为将来可能会发生变化。

angularVelocityVRPose 接口的只读属性,它返回一个数组,表示当前时间戳处 VRDisplay 的角速度矢量,单位为弧度/秒。

注意: 此属性是旧版 WebVR API 的一部分。它已被 WebXR 设备 API 取代。

换句话说,就是传感器围绕 xyz 轴旋转的当前速度。

Float32Array,如果 VR 传感器无法提供角速度信息,则为 null

示例

js
// rendering loop for a VR scene
function drawVRScene() {
  // WebVR: Request the next frame of the animation
  vrSceneFrame = vrDisplay.requestAnimationFrame(drawVRScene);

  // Populate frameData with the data of the next frame to display
  vrDisplay.getFrameData(frameData);

  // Retrieve the angular velocity values for use in rendering
  // curFramePose is a VRPose object
  const curFramePose = frameData.pose;
  const angVel = curFramePose.angularVelocity;
  const avx = angVel[0];
  const avy = angVel[1];
  const avz = angVel[2];

  // render the scene
  // …

  // WebVR: submit the rendered frame to the VR display
  vrDisplay.submitFrame();
}

规范

此属性是旧版 WebVR API 的一部分,已被 WebXR 设备 API 取代。它不再有望成为标准。

在所有浏览器都实现新的 WebXR API 之前,建议依赖框架(如 A-FrameBabylon.jsThree.js)或 polyfill 来开发可在所有浏览器中运行的 WebXR 应用程序 [1]

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅