I am trying to export all animations to file using a revised Export to DirectX script…
I would like to iterate through the animations within bpy.data.actions(easily done) and set the action as the current action for the scene, and while set, write the fcurves to file for each object(this part is done by current dx eport script)…
I am having trouble setting the current action…what are the bpy.ops.outliner.animdata_operation() parameters? From the following code I get an error message saying that ‘SET_ACT’ is not within the enumeration…
bpy.ops.outliner.animdata_operation(‘SET_ACT’)
How do I designate the act to be set?