Scripting/Squirrel/Functions/Checkpoint.Remove: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
== Syntax == | == Syntax == | ||
<pre>Checkpoint.Remove</pre> | <pre>Checkpoint.Remove()</pre> | ||
== Example == | == Example == |
Revision as of 20:21, 23 April 2016
This function removes a checkpoint.
Syntax
Checkpoint.Remove()
Example
function onScriptLoad()
{
CheckpointGreen <- CreateCheckpoint( null, 0, Vector( -378.79, -537.962, 17.2832 ), RGB(255, 0, 255), 2);
CheckpointWhite <- CreateCheckpoint( null, 0, Vector( 876.45, 432.54, 12.34 ), RGB(255, 255, 255), 2);
return 1;
}
function onScriptUnload()
{
CheckpointGreen.Remove();
CheckpointWhite.Remove();
return 1;
}
Notes
Call onScriptLoad and onScriptUnload were used in this example. More info about them in the corresponding pages.