timeline_clear(ind);
Argument | Description |
---|---|
ind | The index of the time line to clear. |
Returns: N/A
With this function you can clear a specific time line of
"moments", removing all codes and actions for that time line and
leaving it empty.
if timeline_position > 200
{
timeline_clear(global.tl);
timeline_index = -1;
}
The above code will clear the specified time line indexed by the variable "global.tl" of all moments when a specific moment has been passed.