Browse Source

Fix comma expression in AnimationAction

Tristan Valcke 8 years ago
parent
commit
84a68f359a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/animation/AnimationAction.js

+ 2 - 2
src/animation/AnimationAction.js

@@ -273,7 +273,7 @@ AnimationAction.prototype = {
 
 		if ( interpolant === null ) {
 
-			interpolant = mixer._lendControlInterpolant(),
+			interpolant = mixer._lendControlInterpolant();
 			this._timeScaleInterpolant = interpolant;
 
 		}
@@ -636,7 +636,7 @@ AnimationAction.prototype = {
 
 		if ( interpolant === null ) {
 
-			interpolant = mixer._lendControlInterpolant(),
+			interpolant = mixer._lendControlInterpolant();
 			this._weightInterpolant = interpolant;
 
 		}