Skip to main content

Timer

Idle

Pause the script for a single frame.

Idle
Wait until next frame

Wait

Pause the script for a period of time.

Wait
Duration
0.5
  • Duration: The length of time to pause the script for in seconds or frames.

Script

Attach Timer Script

Run the specified script repeatedly after a time interval. The script will keep running in the background until a Remove Timer Script event is called or the scene is changed using a Change Scene event.

Attach Timer Script
Timer
1
2
3
4
Time Interval
0.5
On Tick
On Tick
Add Event
  • Timer: The timer that should be modified, each scene can use up to four timers at once.
  • Time Interval: The length of time to wait before running the script each time.
  • On Tick: The script to run when the timer is triggered.

Remove Timer Script

Remove the timer script so it will no longer be called.

Remove Timer Script
Timer
1
2
3
4
Disable the timer script
  • Timer: The timer that should be modified, each scene can use up to four timers at once.

Restart Timer

Reset the countdown timer back to zero. The script will call again after the time specified originally.

Restart Timer
Timer
1
2
3
4
Restart the countdown timer
  • Timer: The timer that should be modified, each scene can use up to four timers at once.