Explorar el Código

Color/Euler: fix 'toArray' broken expectated behavior #4

Wandalen hace 10 años
padre
commit
80b7ac9156
Se han modificado 1 ficheros con 0 adiciones y 4 borrados
  1. 0 4
      src/math/Euler.js

+ 0 - 4
src/math/Euler.js

@@ -289,10 +289,6 @@ THREE.Euler.prototype = {
 		array[ offset + 1 ] = this._y;
 		array[ offset + 2 ] = this._z;
 
-		if( !withoutOrder ) {
-			array[ offset + 3 ] = this._order;
-		}
-
 		return array;
 	},