[SOLVED] How to reset timer? Set with same handle doesn't work?

put this in your .h file.



FTimerHandle Timer;

This will clear the timer so you can use it again.


if (GetWorldTimerManager().IsTimerActive(Timer))
GetWorldTimerManager()).ClearTimer(Timer);

When you need to restart it just use your SetTimer line.

1 Like