What does Engine.get_frames_per_second() show?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Macryc

Hi Guys.

Engine.get_frames_per_second() - will this give me the _process() framerate, _physics_process() framerate, or some sort of combination?

:bust_in_silhouette: Reply From: Calinou

Engine.get_frames_per_second() returns the number of rendered frames per second (which also matches the number of times _process() functions are run).