Steps to Reproduce

Run the following python code

import unreal
export_file = r'C:\Users\yourname\Desktop\Test_file.fbx'
anim_path = 'Paste Object Path of an anim sequence asset here'
anim_sequence = unreal.EditorAssetLibrary.load_asset(anim_path)
export_task = unreal.AssetExportTask()
export_task.set_editor_property('automated', True)
export_task.filename = export_file
export_task.object = anim_sequence
unreal.Exporter.run_asset_export_task(export_task) 

The export options dialog should not show up with the 'automated' property set to True

Have Comments or More Details?

There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-219537 in the post.

0
Login to Vote

Fixed
Fix Commit34933330
CreatedJul 17, 2024
ResolvedJul 19, 2024
UpdatedJul 29, 2024
View Jira Issue