Toggle menu
876
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

KnownFunctions

From Catglobe Wiki
Revision as of 09:37, 11 December 2013 by CGHelpdesk (talk | contribs)

knownFunctions

Get the list of names of all CGScript functions

Syntax

knownFunctions()

Return type

An array of strings

Examples

array a = knownFunctions(); 
for(number i = 0; i < a.Count; i++) 
{ 
 print(a[i]); 
}