Multiple FBX Export

Hello,

In order to validate our pipeline including the batch analysis feature, once all the animation are generated and located in a specific animation group, We would like to export them into fbx to use them in 3dsmax.
Of course, we would like to automatise this process and right now we didn't find an easy way to do that.
So is there a way to export into multiple fbx files all the animations of a specific group without many manipulations?

Thanks

Permalink
A python sctipt works too if you want to be able to tweak animations before exporting.

for group in getAnimationNames():
&nbsp for anim in group[1]:
&nbsp &nbsp outputFile = "C:\\Users\\Me\\" + group[0] + "_" + anim + ".fbx";
&nbsp &nbsp issueCommand('fbx -reducekeys "true" -file "%s" -group "%s" -anim "%s";'%(outputFile, group[0], anim))