Fast forward effect

Hello,

I would like to add fast-forward effect my game. Is there any convenient way to do this? Maybe some global timeScale property so it will speed up tweens, physics, timers, everything at once.

Thanks in advance!

This is probably too generic of a question to answer with an all encompassing / global solution, but if you’re using Arcade physics, “time scale” exists on a property of the Arcade Physics world.

Arcade Physics Time Scale

That property also exists on the tween manager.

(within a scene: this.tweens.timescale = 2.0)

I assume if you look into it more, a timescale variable probably exists on a bunch of other object types.

Play around with that and see what else you need? Good luck!

Hi @vforsh,
There isn’t a global timeScale. This topic can help you:

Greetings.