Browse Source

const -> let

Rawr 5 years ago
parent
commit
e30dfc7a57
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/animation/AnimationMixer.js

+ 2 - 2
src/animation/AnimationMixer.js

@@ -521,8 +521,8 @@ AnimationMixer.prototype = Object.assign( Object.create( EventDispatcher.prototy
 
 		const clipUuid = clipObject !== null ? clipObject.uuid : clip;
 
-		const actionsForClip = this._actionsByClip[ clipUuid ],
-			prototypeAction = null;
+		const actionsForClip = this._actionsByClip[ clipUuid ];
+		let	prototypeAction = null;
 
 		if ( blendMode === undefined ) {