【发布时间】:2014-12-04 01:13:05
【问题描述】:
所以我想做的是像
scene.forEachMeshInScene(function(mesh){
//And here I can do stuff
});
但遗憾的是,这并不存在。我该怎么做?
【问题讨论】:
标签: javascript three.js
所以我想做的是像
scene.forEachMeshInScene(function(mesh){
//And here I can do stuff
});
但遗憾的是,这并不存在。我该怎么做?
【问题讨论】:
标签: javascript three.js
您可以使用以下模式迭代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
【讨论】: