If I start a looping timer using Set Timer by Event or Set Timer by Function Name, the first “tick” of the timer only happens after the Time value. Why?
The tooltip on Time reads, “How long to wait before the delegate, in seconds.” However, why doesn’t the first tick occur immediately and then every Time seconds after that.
I’m trying to use a timer to spawn a bullet every 2 seconds while the mouse button is held down. The problem is that because the first tick of the timer doesn’t happen until after 2 seconds, it means that it takes 2 seconds before the player sees their first bullet spawn after they hold the mouse button down. Very annoying. Is there another way to do this, or a way to force a timer to tick immediately upon start?