所以我想做的就是做
之类的事情scene.forEachMeshInScene(function(mesh){
//And here I can do stuff
});
但遗憾的是,这并不存在。我怎么能这样做?
答案 0 :(得分:11)
您可以使用以下模式迭代Mesh
图表中的scene
个对象:
scene.traverse( function( node ) {
if ( node instanceof THREE.Mesh ) {
// insert your code here, for example:
node.material = new THREE.MeshNormalMaterial()
}
} );
three.js r.69