Difference between revisions of "KnownFunctions"
(→knownFunctions) |
|||
Line 2: | Line 2: | ||
__NOTOC__ | __NOTOC__ | ||
− | Get | + | Get the list of name of all CGScript functions |
==== <span style="color:#a52a2a;">'''Syntax'''</span> ==== | ==== <span style="color:#a52a2a;">'''Syntax'''</span> ==== |
Revision as of 11:22, 19 December 2011
knownFunctions
Get the 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]);
}