KnownTypes
From Catglobe Wiki
More actions
knownTypes
Get the list of names of all CGScript classes
Syntax
knownTypes()
Return type
An array of strings
Examples
array a = knownTypes(); 
for(number i = 0; i < a.Count; i++) { 
 print(a[i]); 
}
Get the list of names of all CGScript classes
knownTypes()
An array of strings
array a = knownTypes(); 
for(number i = 0; i < a.Count; i++) { 
 print(a[i]); 
}