Are Delay and Timer independent from frame rate?

Are Timers and Delay’s in Blueprints fps independent?
So that the BP’s connected get executed exactly after the set time/delay or are they only executed in the tick?

I am about 90% certain they are both running off of tick which is frame rate dependent. If you want to alter that, get delta time, 60*dt will give you your 1 second intervals.

I don’t understand the second part of your post.
How would delta time * 60 give me constant 1 second intervals (aside from a constant 60fps)?

Thank you!

They are not frame dependent as Tick is. They are based on real time.

You will notice these are documented to not occur on “tick” or “frame”, but always “seconds”. That refers to seconds as they occur in reality.

If you want something that is based on how many frames have passed, you would use tick.

Get World Delta Seconds gets time based on the game world’s time, not real life. So time dialation in the level will affect the results.

Just wanted to come back and clarify one point though: Delays work off the dilated seconds. As part of World Tick the latent manager gets ticked.

So they are based on real seconds, but is alterable by game time changes like the World Delta Seconds