Hi everyone ,
I don’t know how I can improve the quality of my texture.
my threejs
VS
google maps
and my code
createScene () {
this.scene = new THREE.Scene()
const texture = new THREE.TextureLoader().load('images/'+this.image);
texture.wrapS = THREE.RepeatWrapping;
texture.repeat.x = -1;
const sphere = new THREE.SphereGeometry(50, 32, 32);
const material = new THREE.MeshBasicMaterial(
{
map: texture,
side: THREE.BackSide,
} );
this.scene.add(new THREE.Mesh(sphere, material));
return this.scene;
}
Thanks a lot.