KnownFunctions

From Catglobe Wiki
Revision as of 12:20, 19 December 2011 by Tungocman (talk | contribs) (Created page with "= knownFunctions = __NOTOC__ Get this list of name of all CGScript functions ==== <span style="color:#a52a2a;">'''Syntax'''</span> ==== knownFunctions() ==== <span style="col...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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]); 
}