How can i see the drawcall

Hi,everyone!
i am learning Phaser3. As you see, my English is not good.
i want to know how to see the performance indicator of my game. such as drawcall and fps.
thank you !

It’s easiest if you use the browser tools (Chrome has an FPS meter somewhere), but you can also print
this.game.loop.actualFps in a scene.

If you’re using the CANVAS renderer, the draw count is in this.renderer.drawCount, but for WEBGL you need to use SpectorJS.

1 Like

Thank you !