|
@@ -66,8 +66,8 @@ function AnimationAction( mixer, clip, localRoot ) {
|
|
|
|
|
|
this.repetitions = Infinity; // no. of repetitions when looping
|
|
|
|
|
|
- this.paused = false; // false -> zero effective time scale
|
|
|
- this.enabled = true; // true -> zero effective weight
|
|
|
+ this.paused = false; // true -> zero effective time scale
|
|
|
+ this.enabled = true; // false -> zero effective weight
|
|
|
|
|
|
this.clampWhenFinished = false; // keep feeding the last frame?
|
|
|
|
|
@@ -220,7 +220,7 @@ Object.assign( AnimationAction.prototype, {
|
|
|
|
|
|
// Time Scale Control
|
|
|
|
|
|
- // set the weight stopping any scheduled warping
|
|
|
+ // set the time scale stopping any scheduled warping
|
|
|
// although .paused = true yields an effective time scale of zero, this
|
|
|
// method does *not* change .paused, because it would be confusing
|
|
|
setEffectiveTimeScale: function( timeScale ) {
|