Create a TimedEvent that can be scheduled to run in the future.
The time between event executions, in seconds
Should this event repeat?
The action to perform when time is up
Has the event been explicitly cancelled
Act as if an additional elapsedMs
have transpired.
Adding a large number (more than the internal msUntilNext
) will not cause
the event to fire twice. It also will not cause the event to fire
immediately... the event will be run on the next iteration of the render
loop.
How many more seconds have transpired. Can be negative to delay when the next timer event happens.
On a clock tick, we check if this event should run, and if so, run the event. Note that an event may run more than once, if it loops. However, if this is a looping event, and elapsedMs is greater tha the period of the timer, it will not run multiple times.
Warning: This should only be called by Stage. You probably want to call
add()
instead.
The milliseconds that have transpired
true if this event has not run for the last time yet (either because it didn't run, or because it did, but it's a repeat event)
TimedEvent is an action that needs to happen after some amount of time has passed.