Browse Source

Clean up.

Mr.doob 10 years ago
parent
commit
3f9614c4b7
1 changed files with 11 additions and 11 deletions
  1. 11 11
      src/textures/Texture.js

+ 11 - 11
src/textures/Texture.js

@@ -65,17 +65,17 @@ THREE.Texture.prototype = {
 
 		this.image = source.image;
 		this.mipmaps = source.mipmaps.slice( 0 );
-		
-		this.mapping = source.mapping;		
-		
-		this.wrapS = source.wrapS;		
-		this.wrapT = source.wrapT;		
-		
-		this.magFilter = source.magFilter;		
-		this.minFilter = source.minFilter;		
-		
-		this.anisotropy = source.anisotropy;		
-		
+
+		this.mapping = source.mapping;
+
+		this.wrapS = source.wrapS;
+		this.wrapT = source.wrapT;
+
+		this.magFilter = source.magFilter;
+		this.minFilter = source.minFilter;
+
+		this.anisotropy = source.anisotropy;
+
 		this.format = source.format;		
 		this.type = source.type;