I get this error anytime I call the THREE. MeshFaceMaterial
And it is really annoying because have browsed and browsed but , no straight answers
And that is my code, please I need suggestion
MeshFaceMaterial
has been removed, now threeJS
support multi materials out of the box, you can try something like this:
var mesh = new THREE.Mesh(geometry, map_box);
Don’t forget to double check the threeJS
version you are working with.
1 Like
Thanks , it now works
1 Like