From 6272944f1e8a13696d62f9a1d67a1699b2a0bdbc Mon Sep 17 00:00:00 2001 From: "T.J. Lipscomb" <829579+TJ09@users.noreply.github.com> Date: Mon, 3 Jul 2023 11:43:29 -0700 Subject: [PATCH] Apply AnimationManager's global time scale to AnimationStates. --- src/animations/AnimationState.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/animations/AnimationState.js b/src/animations/AnimationState.js index e63fafe28..fc19dc144 100644 --- a/src/animations/AnimationState.js +++ b/src/animations/AnimationState.js @@ -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) {