1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
GC
==
SurgeScript features a Garbage Collector (GC) that automatically disposes objects that cannot be reached from the root (i.e., their references are lost). The Garbage Collector is available at `System.gc`. Generally, you do not need to modify any of its settings.
Properties
----------
#### interval
`interval`: number.
Every `interval` seconds, the garbage collector will be called automatically.
#### objectCount
`objectCount`: number, read-only.
How many objects were disposed when the garbage collector was last called.
Functions
---------
#### collect
`collect()`
Calls the Garbage Collector manually.
|