XRAnchor:delete() 方法
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
XRAnchor
接口的 delete()
方法可删除锚点。当应用程序不再希望接收到锚点的更新时,这会非常有用。
语法
js
delete()
参数
无。
返回值
无(undefined
)。
示例
移除所有锚点
js
let anchorsCollection = new Set();
// 创建锚点后,将其添加到 anchorsCollection.add(anchor) 中
for (const anchor of anchorsCollection) {
anchor.delete();
}
anchorsCollection.clear();
规范
Specification |
---|
WebXR Anchors Module # dom-xranchor-delete |
浏览器兼容性
BCD tables only load in the browser