Hi There,
anybody know of a script that can select all objects in scene with no materials applied to them?
regards,
Wim
anybody know of a script that can select all objects in scene with no materials applied to them?
regards,
Wim
clearSelection() for i in geometry where i.material == undefined do selectmore i
clearSelection() for o in objects where (isKindOf o shape and o.render_renderable) or (isKindof o geometryClass) and o.material == undefined do selectmore o
Comment