FBX: Enable the Collection exporter feature #105273

Merged
Jesse Yurkovich merged 6 commits from deadpin/blender-addons:fbx-collectionexport into main 2024-04-16 05:13:36 +02:00
Showing only changes of commit b2a21b359a - Show all commits

View File

@ -615,9 +615,9 @@ def export_panel_include(layout, operator, is_file_browser):
if body: if body:
sublayout = body.column(heading="Limit to") sublayout = body.column(heading="Limit to")
sublayout.enabled = (operator.batch_mode == 'OFF') sublayout.enabled = (operator.batch_mode == 'OFF')
if is_file_browser:
sublayout.prop(operator, "use_selection") sublayout.prop(operator, "use_selection")
sublayout.prop(operator, "use_visible") sublayout.prop(operator, "use_visible")
if is_file_browser:
sublayout.prop(operator, "use_active_collection") sublayout.prop(operator, "use_active_collection")
body.column().prop(operator, "object_types") body.column().prop(operator, "object_types")