Select Vraydisplaced


/ Published in: Maxscript
Save to your folder(s)

Select all objects with a VrayDisplaceMod on them


Copy this code and paste it in your HTML
  1. displaced_objects =#()
  2.  
  3. for o in $* do
  4. (
  5. if o.modifiers.count != 0 then
  6. (
  7. if o.modifiers[#VrayDisplacementMod] != undefined then
  8. (
  9. append displaced_objects o
  10. )
  11. )
  12. )
  13.  
  14. select displaced_objects

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.