I am facing a challenge with a .obj
file that appears colored in software like MeshLab or Microsoft's 3D builder. However, there is no .mtl
file linked to it. When I try to open it in ThreeJs using the most basic method, it shows up as grey.
var loader = new THREE.OBJLoader(manager);
loader.load('assets/model.obj', (object) => {
this.scene.add( object );
},);