所以我想要做的是

scene.forEachMeshInScene(function(mesh){
      //And here I can do stuff
});

但是可悲的是,这并不存在。我该怎么做?

最佳答案

您可以使用以下模式来迭代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

09-07 12:32