diff --git a/examples/misc_exporter_collada.html b/examples/misc_exporter_collada.html index 4d40f6abcdd22ef95ea0dc9d8e7db3db28c5b517..5c9796b7cca1ebddb50e5133b35a7c97b943e2fc 100644 --- a/examples/misc_exporter_collada.html +++ b/examples/misc_exporter_collada.html @@ -90,11 +90,11 @@ textureMap.anisotropy = 16; // REFLECTION MAP - var path = "textures/cube/skybox/"; + var path = "textures/cube/pisa/"; var urls = [ - path + "px.jpg", path + "nx.jpg", - path + "py.jpg", path + "ny.jpg", - path + "pz.jpg", path + "nz.jpg" + path + "px.png", path + "nx.png", + path + "py.png", path + "ny.png", + path + "pz.png", path + "nz.png" ]; textureCube = new THREE.CubeTextureLoader().load( urls ); diff --git a/examples/webgl_geometry_teapot.html b/examples/webgl_geometry_teapot.html index eb7d7b2e264e5290e260f447be1b13c401421bd7..b8d8d1cfd6b0cd08e5bcb4ec25a9d82caff15616 100644 --- a/examples/webgl_geometry_teapot.html +++ b/examples/webgl_geometry_teapot.html @@ -84,11 +84,11 @@ textureMap.anisotropy = 16; // REFLECTION MAP - var path = "textures/cube/skybox/"; + var path = "textures/cube/pisa/"; var urls = [ - path + "px.jpg", path + "nx.jpg", - path + "py.jpg", path + "ny.jpg", - path + "pz.jpg", path + "nz.jpg" + path + "px.png", path + "nx.png", + path + "py.png", path + "ny.png", + path + "pz.png", path + "nz.png" ]; textureCube = new THREE.CubeTextureLoader().load( urls ); diff --git a/examples/webgl_nearestneighbour.html b/examples/webgl_nearestneighbour.html index 718ef1a7e8827c4539c1c87a0e5796a625721adf..acb8c4bb9ac273bdf06a30f3be55834d61b5e7ff 100644 --- a/examples/webgl_nearestneighbour.html +++ b/examples/webgl_nearestneighbour.html @@ -82,7 +82,7 @@ // add a skybox background var cubeTextureLoader = new THREE.CubeTextureLoader(); - cubeTextureLoader.setPath( 'textures/cube/skybox/' ); + cubeTextureLoader.setPath( 'textures/cube/skyboxsun25deg/' ); var cubeTexture = cubeTextureLoader.load( [ 'px.jpg', 'nx.jpg', diff --git a/examples/webgl_water.html b/examples/webgl_water.html index 168d9c428bef4da834b61b3eb9270b9a70291296..5aa42cf54b67cc7050d594115079150eb6706f16 100644 --- a/examples/webgl_water.html +++ b/examples/webgl_water.html @@ -100,12 +100,12 @@ // skybox var cubeTextureLoader = new THREE.CubeTextureLoader(); - cubeTextureLoader.setPath( 'textures/cube/skybox/' ); + cubeTextureLoader.setPath( 'textures/cube/Park2/' ); var cubeTexture = cubeTextureLoader.load( [ - 'px.jpg', 'nx.jpg', - 'py.jpg', 'ny.jpg', - 'pz.jpg', 'nz.jpg', + "posx.jpg", "negx.jpg", + "posy.jpg", "negy.jpg", + "posz.jpg", "negz.jpg" ] ); scene.background = cubeTexture;