What is the recommended approach for displaying the next panorama with image changes?
Steps to achieve this:
var textures = [
loadTexture( 'PANO_NEXT0001.jpg' ), // right
loadTexture( 'PANO_NEXT0003.jpg' ), // left
loadTexture( 'PANO_NEXT0004.jpg' ), // top
loadTexture( 'PANO_NEXT0005.jpg' ), // bottom
loadTexture( 'PANO_NEXT0000.jpg' ), // back
loadTexture( 'PANO_NEXT0002.jpg' ) // front
];
scene.remove(scene.children[0]);
mesh = new THREE.Mesh( new THREE.BoxGeometry( 300, 300, 300, 7, 7, 7 ), new THREE.MeshFaceMaterial( textures ));
mesh.scale.x = - 1;
scene.add( mesh );