MTLLoader doesn't show texture on the object I load

206 Views Asked by At

I'm new to ThreeJS, still learning. I have like an earth globe 3d object that I load into my scene, and I also have a mtl file which I load according to the documentation, but after I render the scene the globe still looks without texture. I think it only shows the geometry.

Tried loading the globe in Blender and the texture looks good in there, but in browser things aren't the same.

var mtlLoader = new THREE.MTLLoader();
mtlLoader.load('/models/Glob.mtl', function(materials) {
materials.preload();

var objLoader = new THREE.OBJLoader();
objLoader.setMaterials(materials);
objLoader.load('/models/Glob.obj', function(object){

    scene.add(object);
    console.log(object);
});

});

I'd like to find a way to show the texture of the globe so I could move on with my project.

0

There are 0 best solutions below