Achieve smooth 30FPS loop in Phaser 2/CE

Hi! I know best game consoles like PSP and PS4 used 30FPS framerate in most of it’s games, resulting in more stability and smothness.
I’m looking for a way to achieve that level of control in my rendering loop.
Maybe with game.raf or game.time…
Can someone help me?

See init().

thank u. that was very useful.
another question: what is game.time.desiredMinFps used for?

game.time.desiredMinFps (default 5fps) sets game.time.deltaMax (default 200ms) and the game loop clamps the step delta within that maximum.

It can’t force the browser to run faster.

okey :slight_smile:
i’ll use it in my game
thank you