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

KnownFunctions: Difference between revisions

From Catglobe Wiki
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..."
 
Tungocman (talk | contribs)
No edit summary
Line 18: Line 18:
}
}
</source>
</source>
[[Category:General Functions]]

Revision as of 10:21, 19 December 2011

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