XRDepthInformation: height 属性

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

安全上下文: 此功能仅在 安全上下文 (HTTPS) 中可用,在某些或所有 支持的浏览器 中可用。

XRDepthInformation 接口的只读 height 属性包含深度缓冲区的 高度(行数)。

一个无符号长整数。

示例

使用 XRFrame.getDepthInformation() (CPU) 或 XRWebGLBinding.getDepthInformation() (WebGL) 来获取深度信息。返回的对象将包含深度缓冲区的 height,您可以在后续计算中使用它。

js
const smallerDepthDimension = Math.min(depthInfo.width, depthInfo.height);
const largerDepthDimension = Math.max(depthInfo.width, depthInfo.height);

规范

规范
WebXR 深度感应模块
# dom-xrdepthinformation-height

浏览器兼容性

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