timer_check_sequence - kemonologic/fuwafuwa GitHub Wiki
timer_check_sequence(timer)
Returns: (bool) Whether the timer sequence has completed or not.
| Argument | Type | Name | Desc |
|---|---|---|---|
| 0 | map | timer | The timer to check. |
Returns whether or not the timer sequence completed this frame.
A timer sequence is considered completed on the frame the last node is completed (e.g. timer_check would also return true that frame).
Note that repeating timers will restart the last node once the sequence is finished, and so will continue periodically returning true every time the node is completed, until additional nodes are appended to the sequence, it's paused, etc.