How to display FPS

How do you display FPS in the game?

TimeDelta() returns the seconds elapsed per frame, so 1/TimeDelta() returns the frames elapsed per second :slight_smile:
Try to set the string of a text object to:

ToString(round(1/TimeDelta()))
8 Likes