Select Related VrayProxys


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

Selects all vray proxys in the scene which have the same vrmesh as your current selection. (For those Oops, thats not an instance moments.)


Copy this code and paste it in your HTML
  1. similarProxy_objects =#()
  2.  
  3. try
  4. (
  5. file=selection[1].filename
  6. for o in $* do
  7. if (classof o == vrayproxy) do
  8. if (o.filename == file) do append similarProxy_objects o
  9. )
  10. catch(format "No filename property in: %" selection[1])
  11.  
  12. select similarProxy_objects

Report this snippet


Comments


You need to login to view comments.