Execute a python script and specify automated property to true and the fbx export dialog will show up. It should respect the settings and not show the export options UI.
import unreal editor_world = unreal.EditorLevelLibrary.get_editor_world() export_task = unreal.AssetExportTask() export_task.set_editor_property("selected", True) export_task.set_editor_property("filename", 'C:/Users/Alexis/Downloads/FBX/exporter/SelectExportTest.fbx') export_task.set_editor_property("automated", True) export_task.set_editor_property("object", editor_world) unreal.Exporter.run_asset_export_task(export_task)
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-96164 in the post.
0 |
Component | UE - Editor - Content Pipeline - Import and Export |
---|---|
Target Fix | 4.26 |
Created | Jul 30, 2020 |
---|---|
Resolved | Jul 30, 2020 |
Updated | Aug 3, 2020 |