XRAnchor: delete() 方法

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

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

delete() 方法是 XRAnchor 接口的一部分,用于删除锚点。当应用程序不再需要接收锚点更新时,这会很有用。

语法

js
delete()

参数

无。

返回值

无 (undefined).

示例

删除所有锚点

js
let anchorsCollection = new Set();

// Upon creating anchors, add them to the Set
// anchorsCollection.add(anchor);

for (const anchor of anchorsCollection) {
  anchor.delete();
}

anchorsCollection.clear();

规范

规范
WebXR 锚点模块
# dom-xranchor-delete

浏览器兼容性

BCD 表仅在浏览器中加载