is there a way to find all the non selectable objects in the outliner or a small script to list all these ?
thanks
happy bl
is there a way to find all the non selectable objects in the outliner or a small script to list all these ?
thanks
happy bl
I’m not an expert but I’d say:
import bpy
for obj in bpy.data.objects:
if obj.hide_select == True:
print(obj.name)
so no tool for outliner helping to find these un selectable objects !
I hope there is something done in 2.8
it would be useful !
thanks
happy bl