按名称选择Collada组和子项

时间:2012-06-12 19:03:14

标签: three.js

我正在将Cinema4D生成的Collada文件加载到Three.js中。我从其他帖子中了解到,您可以使用dae.children[i];选择和修改单个孩子,但有没有办法按名称选择他们?

此外,您可以在Cinema4D中对儿童进行分组。有没有办法按名称选择这些组?

2 个答案:

答案 0 :(得分:1)

Object3D的{​​{1}}方法可能就是你所追求的。 http://mrdoob.github.com/three.js/docs/49/#Object3D

答案 1 :(得分:0)

dae.getChildByName( 'ID50', true ) 

正在运作。