How to add time scale - that affects tweens animations and so on [SOLVED]

Hi @ProperSag,
The scene has three members with the timeScale property. So if you would like to reduce the speed of the scene by half:

this.tweens.timeScale = 0.5; // tweens
this.physics.world.timeScale = 0.5; // physics
this.time.timeScale = 0.5; // time events

Regards.

4 Likes