VRPose:angularAcceleration 属性

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

非标准:此功能是非标准的,并且不在标准跟踪中。不要在面向 Web 的生产站点上使用它:它不会对每个用户都有效。实现之间也可能存在很大的不兼容性,并且行为将来可能会发生变化。

angularAccelerationVRPose 接口的只读属性,它返回一个数组,表示当前时间戳处 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 acceleration values for use in rendering
  // curFramePose is a VRPose object
  const curFramePose = frameData.pose;
  const angAcc = curFramePose.angularAcceleration;
  const aax = angAcc[0];
  const aay = angAcc[1];
  const aaz = angAcc[2];

  // render the scene
  // …

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

规范

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

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

浏览器兼容性

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

另请参阅