소스 검색

Color doesn't have a fourth argument

gero3 6 년 전
부모
커밋
f6b254b370
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/jsm/loaders/AssimpLoader.js

+ 1 - 1
examples/jsm/loaders/AssimpLoader.js

@@ -878,7 +878,7 @@ AssimpLoader.prototype = {
 			this.a = 0;
 			this.toTHREE = function () {
 
-				return new Color( this.r, this.g, this.b, 1 );
+				return new Color( this.r, this.g, this.b );
 
 			};