I want to create realistic faucet but have a problem on envmap. Envmap not looks like seamless. I t is looks like each part have yourown envmap. Also faucet body envmap stretch much than bottom or top side. How can I create a faucet like sketchfab link.
sketchfab faucet:
envmap code:
new THREE.TextureLoader().load('../../Textures/' + companyId + '/Maps/' + maps.envMap, function (texture) {
let cloneMaterial = object.children[meshid].material.clone();
texture.flipY = false;
texture.mapping = THREE.EquirectangularReflectionMapping;
cloneMaterial.envMap = texture;
object.children[meshid].material = cloneMaterial;
renderOnetime();
}, undefined, function (error) {
console.error(error);
});