KnownFunctions
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]);
}
Get the list of names of all CGScript functions
knownFunctions()
An array of strings
array a = knownFunctions();
for(number i = 0; i < a.Count; i++) {
print(a[i]);
}