XRCubeLayer:方向属性

实验性:这是一项实验性技术
在生产环境中使用之前,请仔细查看浏览器兼容性表

XRCubeLayer接口的orientation属性表示相对于space属性的方向。

示例

更新立方体层的方向

XRWebGLBinding.createCubeLayer()方法创建立方体层,并允许指定orientation。在创建层之后,可以使用XRCubeLayer.orientation属性获取当前方向或将其设置为新方向。

js
const cubeLayer = xrGlBinding.createCubeLayer({
  space: xrReferenceSpace,
  viewPixelWidth: 512,
  viewPixelHeight: 512,
  orientation: DOMPointReadOnly.fromPoint({ x: 0.0, y: 0.0, z: 0.0, w: 1.0 }),
});

cubeLayer.orientation = someOtherPoint;

规范

规范
WebXR Layers API 第 1 级
# dom-xrcubelayer-orientation

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅