KnownTypes

From Catglobe Wiki
Revision as of 11:50, 11 December 2013 by CGHelpdesk (talk | contribs)
Jump to: navigation, search

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]); 
}