Ver código fonte

pass along update to Euler.setFromRotationMatrix.

Ben Houston 11 anos atrás
pai
commit
b6217c7d21
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      src/math/Euler.js

+ 1 - 1
src/math/Euler.js

@@ -232,7 +232,7 @@ THREE.Euler.prototype = {
 	   
 	   	  mIntermediate = mIntermediate || new THREE.Matrix4();
 	      mIntermediate.makeRotationFromQuaternion( q );
-	      this.setFromRotationMatrix( mIntermediate, order );
+	      this.setFromRotationMatrix( mIntermediate, order, update );
 	   
 	      return this;
 	   };