Headless Mode max FPSs

Hey there.
I’m trying to develop a game that works in machine learning and to train the models it would help if there was a way to increase the fps/updates of the game, I already tried it with the game in headless mode but still I’m limited to only 60 fps :slight_smile:

Does anyone know of any way to get more fps in phaser?

(Sorry my English :sweat_smile: )

You can turn off the time step and step the game manually.

1 Like

I change the initial config to this:

fps: {
		target: 1000,
		forceSetTimeOut: true,
	},

And now i got 220 fps, its nice :slight_smile: