KnownFunctions

From Catglobe Wiki
Revision as of 11:59, 11 December 2013 by CGHelpdesk (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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