Notifications
Clear all

[Closed] Variable & Array

Hi,
I was wondering if it is possible to find all the variables and arrays existing in a scene?

perhaps something like this

for s in shadow.classes collect (s as string)

but for the arrays and variables

2 Replies
1 Reply
(@denist)
Joined: 2 years ago

Posts: 0

you can find all global variables (including arrays) using globalVars structure (check MXS Help for details)


globalVars.gather()

thanks a lot. i ll read it