Hey there,
I have some trouble with exporting (sequences) from Unreal to fbx using Python.
I created an AssetExportTask and set the exporter to AnimSequenceExporterFBX (which is an exporter) but it will not be recognized as a Exporter.
Is there something wrong the way I do it?
Thanks in advance for your help!
I have some trouble with exporting (sequences) from Unreal to fbx using Python.
I created an AssetExportTask and set the exporter to AnimSequenceExporterFBX (which is an exporter) but it will not be recognized as a Exporter.
Is there something wrong the way I do it?
Code:
export_task = unreal.AssetExportTask() export_task.automated = True export_task.exporter = unreal.AnimSequenceExporterFBX export_task.filename = "MyOutputPath" export_task.object = sequence_to_export unreal.Exporter.run_asset_export_task(export_task)
Comment