XRAnchor: delete() 方法
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 表仅在浏览器中加载