Three js face mesh material

I get this error anytime I call the THREE. MeshFaceMaterial
20230106-003700
And it is really annoying because have browsed and browsed but , no straight answers
20230106-004205
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