I’m a complete noob at python, but what I want to do is use the bake action operator on multiple objects - but i’m not sure what to do. So far I have:
import bpy
lista = []
for ob in bpy.context.scene.objects:
if ob.select:
lista.append(ob)
for ob in lista:
I’m just not sure what to use… should it be bpy.ops.bake_action?
Thanks for any help…