KnownFunctions

From Catglobe Wiki
Revision as of 11:21, 19 December 2011 by Tungocman (talk | contribs)
Jump to: navigation, search

knownFunctions

Get this list of name 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]); 
}