How to select all geometry objects except Vray proxy and VrayFur objects?
Hi. Is there any chance to select all object under category geometry:
select geometry as array
except vray proxy?
I know to select all proxy:
max select all
select (for o in selection where classOf o == VRayProxy collect o)
or fur objects and create an array of them. If I would to know to subtract that array minus my geometry array...
I don't know if subtraction is a good idea or if I should do it another way. But how should I do it?
Thanks for all replies.
Tomas

Comments
almost the same...
select(for o in geometry where classOf o != VRayProxy collect o)my recent MAXScripts RSS (archive here)
Thank you. It works.
Thank you. It works.