Преглед на файлове

Update ArrowHelper.js

change hex to color.
srifqi преди 11 години
родител
ревизия
0d09419b0c
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      src/extras/helpers/ArrowHelper.js

+ 3 - 3
src/extras/helpers/ArrowHelper.js

@@ -94,9 +94,9 @@ THREE.ArrowHelper.prototype.setLength = function ( length, headLength, headWidth
 
 };
 
-THREE.ArrowHelper.prototype.setColor = function ( hex ) {
+THREE.ArrowHelper.prototype.setColor = function ( color ) {
 
-	this.line.material.color.setHex( hex );
-	this.cone.material.color.setHex( hex );
+	this.line.material.color.set( color );
+	this.cone.material.color.set( color );
 
 };