Animation
@@ -738,7 +738,6 @@ THREE.AnimationMixer._Action.prototype = {
switch ( loop ) {
case THREE.LoopOnce:
- case THREE.LoopOnceClamp:
if ( loopCount === -1 ) {
@@ -10,7 +10,7 @@
THREE.ColorKeyframeTrack = function ( name, times, values, interpolation ) {
- THREE.KeyframeTrack.call( this, name, keys, interpolation );
+ THREE.KeyframeTrack.call( this, name, times, values, interpolation );
};