Scripting/Squirrel/Functions/Timer.Delete
This wiki is using an old backup from 2020
Some information may be old/missing
Syntax
Timer.Delete
Arguments
Timer - The instance of the timer.
Example
This example will create a timer when the script loads and deletes it when it unloads.
<source lang=squirrel> function onScriptLoad() {
timer <- NewTimer("print",1000,0,"test");
}
function onScriptUnload() {
timer.Delete();
}