Browse Source

Fixed intendations

rNix 9 years ago
parent
commit
c848f4e508
1 changed files with 3 additions and 4 deletions
  1. 3 4
      examples/webgl_stereo_pano.html

+ 3 - 4
examples/webgl_stereo_pano.html

@@ -75,7 +75,6 @@
 			effect = new THREE.VREffect( renderer );
 			vrControls = new THREE.VRControls( camera );
 
-
 			var textures = getTexturesFromAtlasFile( "textures/cube/sun_temple_stripe_stereo.jpg", 12 );
 
 
@@ -83,7 +82,7 @@
 
 			for ( var i = 0; i < 6; i ++ ) {
 
-					materials.push( new THREE.MeshBasicMaterial( { map: textures[i] } ) );
+				materials.push( new THREE.MeshBasicMaterial( { map: textures[i] } ) );
 
 			}
 
@@ -97,7 +96,7 @@
 
 			for ( var i = 6; i < 12; i ++ ) {
 
-					materialsR.push( new THREE.MeshBasicMaterial( { map: textures[i] } ) );
+				materialsR.push( new THREE.MeshBasicMaterial( { map: textures[i] } ) );
 
 			}
 
@@ -150,7 +149,7 @@
 
 		function requestFullscreen() {
 
-				effect.setFullScreen( true );
+			effect.setFullScreen( true );
 
 		}