Real Millisecond Countdown

Hello Community,
I want to count down from 5 to 0 and I’m able to do that, but only with seconds.

My question is how i can count down from 5 in millisecond steps, but everything should happen in real time(like a real stopwatch).

Until now my test are all slower than realtime.

I hope I could explain my problem.

Hope to hear from you soon.

-Creey

There 2 ways

  1. You can use timers and get timer state using this node:

2.Or make float variable, set it to 5 and on tick event subtract it with Delta seconds, when it will be equile or lower then 0, then do something

Thank you for the quick answer! =)