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 c7e36ccaa2 - Show all commits

View File

@ -3615,7 +3615,7 @@ def save(operator, context,
if collection in bpy.data.collections: if collection in bpy.data.collections:
source_collection = bpy.data.collections[collection] source_collection = bpy.data.collections[collection]
else: else:
operator.report({'ERROR'}, "Collection %s was not found" % collection) operator.report({'ERROR'}, "Collection '%s' was not found" % collection)
return {'CANCELLED'} return {'CANCELLED'}
if source_collection: if source_collection: