Browse Source

undo set flipY

Daosheng Mu 9 years ago
parent
commit
3b2009050a
1 changed files with 0 additions and 2 deletions
  1. 0 2
      examples/webgl_materials_texture_tga.html

+ 0 - 2
examples/webgl_materials_texture_tga.html

@@ -77,7 +77,6 @@
 
 				// add box 1 - grey8 texture
 				var texture1 = loader.load( 'textures/crate_grey8.tga' );
-				texture1.flipY = true;
 
 				var material1 = new THREE.MeshPhongMaterial( { color: 0xffffff, map: texture1 } );
 
@@ -89,7 +88,6 @@
 
 				// add box 2 - tga texture
 				var texture2 = loader.load( 'textures/crate_color8.tga' );
-				texture2.flipY = true;
 
 				var material2 = new THREE.MeshPhongMaterial( { color: 0xffffff, map: texture2 } );