Timer
Idle
Pause the script for a single frame.
Idle
Wait until next frame
Rate Limit
Limit how often this script can be be run. If the script is triggered again before the time limit has passed the script will be skipped.
Rate Limit
Next Call Time Variable
$Variable0
Time Interval
0
Rate Limited
- Next Call Time Variable: The variable which will store the next time, in frames, that this script can be called.
- Time Interval: The minimum wait time between successive calls of this script.
- Rate Limited: The script that will be rate limited.
Wait
Pause the script for a period of time.
Wait
Duration
0
- 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
- 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.