mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 04:33:31 +00:00
Apply AnimationManager's global time scale to AnimationStates.
This commit is contained in:
parent
1a2a255904
commit
6272944f1e
1 changed files with 1 additions and 1 deletions
|
@ -1487,7 +1487,7 @@ var AnimationState = new Class({
|
|||
return;
|
||||
}
|
||||
|
||||
this.accumulator += delta * this.timeScale;
|
||||
this.accumulator += delta * this.timeScale * this.animationManager.globalTimeScale;
|
||||
|
||||
if (this._pendingStop === 1)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue