Parcourir la source

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

Wandalen il y a 10 ans
Parent
commit
80b7ac9156
1 fichiers modifiés avec 0 ajouts et 4 suppressions
  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;
 	},