Author Topic: How to check if object is corona proxy using maxscript?  (Read 1905 times)

2017-02-01, 16:21:43

Monkeybrother

  • Active Users
  • **
  • Posts: 232
    • View Profile
So, another beginner's question: like the title, how can I check if an object is a cProxy using maxscript? Thanks!

2017-02-02, 00:38:02
Reply #1

zdragas

  • Active Users
  • **
  • Posts: 16
    • View Profile
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

2017-02-02, 12:45:51
Reply #2

Monkeybrother

  • Active Users
  • **
  • Posts: 232
    • View Profile