Преглед изворни кода

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 );
 
 			};