Looking to achieve a more polished and lifelike chrome effect. The texture quality in my demo is currently jagged and pixelated. What methods can be used to achieve a flawless reflective surface on a customized object?
https://i.sstatic.net/dfPKv.gif
var path = "textures/reflection/";
var format = '.jpg';
var urls = [
path + 'px' + format, path + 'nx' + format,
path + 'py' + format, path + 'ny' + format,
path + 'pz' + format, path + 'nz' + format
];
var envMap = THREE.ImageUtils.loadTextureCube( urls, THREE.CubeReflectionMapping );
var chrome = new THREE.MeshPhongMaterial( {
color: 0xffffff,
specular:0xffffff,
envMap: envMap,
combine: THREE.MultiplyOperation,
shininess: 50,
reflectivity: 1.0
} );