Materials in exported Blender model for Three.js not working
问题 I am trying to use a model created with Blender with Three.js The model is very basic, two cubes on top of each other. One cube is red and the other is green. I have exported the model using the Blender exporter plugin of Three.js When I assign a material manually to the object like: loader.load("model.js", function ( geometry, material ) { material = new THREE.MeshBasicMaterial( { color: 0xFF0000 } ); mesh = new THREE.Mesh( geometry, material); scene.add(mesh); animate(); }); there is no