使用三个js:
我有一个功能removeBysid(id)
我想做的是进入场景中的所有子项,并检查第三个子项的treeNode
并获得其唯一的sid
(我创建的变量)。
在控制台中,当我这样做时:
scene.children[4].children[0].children[0].treeNode
我得到了我想要通过该功能实现的目标。
现在,我想要一个函数来迭代所有子项,而无需像在控制台中那样对索引进行硬编码。
function removeBysid(id) {
scene.traverse(function(element) {
//element returns Scene {uuid: "AC30E121-517A-40F9-8F86-F3626003A3C7", name: "", type: "Scene", parent: null, //children: Array(6)…} now i want to check scene.children[4].children[0].children[0].treeNode.sid = sid
})
}
最佳答案
它看起来应该像这样:
function removeBysid(id) {
scene.traverse(function(element) {
if (element.children[0].children[0].treeNode.sid == id) {
scene.remove(scene.getObjectById(element.id);
// And since you know it's unique...
return;
}
})
}
关于javascript - 我如何在三个js中遍历场景 child ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45002696/