Browse Source

Move a comment line in AnimationAction

Takahiro 8 years ago
parent
commit
f99ce24e82
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/animation/AnimationAction.js

+ 2 - 2
src/animation/AnimationAction.js

@@ -328,6 +328,8 @@ Object.assign( AnimationAction.prototype, {
 
 	_update: function( time, deltaTime, timeDirection, accuIndex ) {
 
+		// called by the mixer
+
 		if ( ! this.enabled ) {
 
 			// call ._updateWeight() to update ._effectiveWeight
@@ -337,8 +339,6 @@ Object.assign( AnimationAction.prototype, {
 
 		}
 
-		// called by the mixer
-
 		var startTime = this._startTime;
 
 		if ( startTime !== null ) {