how i can get fps variable via blueprint?

Hello. Me need get fps variable, like console command “stat fps”. But me need get it in variable in blueprint

Just do an event tick, and the ‘delta seconds’ return value will give you the length of each frame which can easily be converted to FPS.

Me need delta * 60?

Nope, delta will give either the milliseconds, or seconds. I’m not sure which, but if it’s seconds you should convert it to milliseconds, then 1000/deltaMilliseconds = FPS.

1 Like

Thx. Will try today

This is an old thread but just in case, the formula to get your framerate is 1/DeltaSeconds.