Mr.doob преди 9 години
родител
ревизия
944d0d200c
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/textures/DataTexture.js

+ 1 - 1
src/textures/DataTexture.js

@@ -14,8 +14,8 @@ function DataTexture( data, width, height, format, type, mapping, wrapS, wrapT,
 	this.magFilter = magFilter !== undefined ? magFilter : NearestFilter;
 	this.minFilter = minFilter !== undefined ? minFilter : NearestFilter;
 
-	this.flipY = false;
 	this.generateMipmaps  = false;
+	this.flipY = false;
 	this.unpackAlignment = 1;
 
 }