Skip to content

Commit b2899ad

Browse files
authored
Merge pull request #3 from adamdoyle/patch-1
Fix for inability to export via FBX
2 parents 3c475a3 + 9ad9b28 commit b2899ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ds_sp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def execute(self, context):
285285

286286
def ds_sp_fbx_export_sel(self, context):
287287

288-
_export_name = bpy.context.scene.objects.active.name
288+
_export_name = bpy.context.active_object.name
289289
_export_path = ds_sp_get_export_path()
290290
_export_file = _export_path + _export_name + '.fbx'
291291

0 commit comments

Comments
 (0)