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.

KnownTypes: Difference between revisions

From Catglobe Wiki
CGHelpdesk (talk | contribs)
No edit summary
CGHelpdesk (talk | contribs)
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
= knownTypes =
= knownTypes =
 
[[Category:General Functions]]
__NOTOC__
__NOTOC__




<br/><br/><br/>Get the list of names of all CGScript classes
Get the list of names of all CGScript classes


== <span style="color:#a52a2a;">'''Syntax'''</span> ==
== <span style="color:#a52a2a;">'''Syntax'''</span> ==

Latest revision as of 09:59, 11 December 2013

knownTypes


Get the list of names of all CGScript classes

Syntax

knownTypes()

Return type

An array of strings

Examples

array a = knownTypes(); 
for(number i = 0; i < a.Count; i++) { 
 print(a[i]); 
}