Chaos Corona Forum

Chaos Corona for 3ds Max => [Max] I need help! => Topic started by: Monkeybrother on 2017-02-01, 16:21:43

Title: How to check if object is corona proxy using maxscript?
Post 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!
Title: Re: How to check if object is corona proxy using maxscript?
Post by: zdragas on 2017-02-02, 00:38:02
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
Title: Re: How to check if object is corona proxy using maxscript?
Post by: Monkeybrother on 2017-02-02, 12:45:51
Thank you.