Chaos Corona Forum
Chaos Corona for 3ds Max => [Max] I need help! => Topic started by: Monkeybrother on 2017-02-01, 16:21:43
-
So, another beginner's question: like the title, how can I check if an object is a cProxy using maxscript? Thanks!
-
This will select all Corona proxy objects in the scene:
select(for o in geometry where classOf o == cproxy collect o)
please note that if there is corona proxy in a closed group, entire group will be selected
-
Thank you.