Difference between revisions of "KnownTypes"

From Catglobe Wiki
Jump to: navigation, search
 
Line 1: Line 1:
 
= knownTypes =
 
= knownTypes =
 +
[[Category:General Functions]]
 
__NOTOC__
 
__NOTOC__
 +
  
 
Get the list of names of all CGScript classes
 
Get the list of names of all CGScript classes

Latest revision as of 11:59, 11 December 2013

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