Notifications
Clear all
[Closed] Script to select objects with animation
Feb 20, 2008 7:32 am
Hi all
Is there a way to select objects with animated keys (just transform keys)?
I have 4000 odd objects to sift through, some with animations others without. I need to select all the objects without animation.
Any script that could do the selection process for me?
Thanks
Anim
5 Replies
Feb 20, 2008 7:32 am
:wise:
for o in objects where o.transform.isanimated == false do selectmore o
Feb 20, 2008 7:32 am
Actually, it should be:
select (for o in objects where o.transform.isAnimated collect o)
cheers,
o
Feb 20, 2008 7:32 am
Ofer,
your code selects animated objs, my code non-animated… so, how should it be then ? :shrug: (just curious)
1 Reply
I thought he asked for the selection of animated objects, but hey, now he can choose either way