소스 검색

Clean up.

Mr.doob 8 년 전
부모
커밋
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;
 
 }