expression editor - get the current fps of the game [solved]

I basically need it in order to introduce a timer that is affected by game lag:

Here is how it could be done:
In this case, I want to replace the “60” in the formula with the game’s current framerate. That way if the framerate drops, the timer will also drop.

It would also be useful to have it in a condition in some cases, where if the game runs at a too low framerate, some effects can automatically be disabled.

This expression already exists :

TimeDelta()

It returns the time since the last frame. So :

1/TimeDelta()

returns the “frame” frequency, also know as FPS.

ah I see. Thank you. I am really bad at math :smiley: