Skip to content

Commit 7b4cc8e

Browse files
committed
1_8_7
Fixed export scene
1 parent 1dc7006 commit 7b4cc8e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"name": "DKS Substance Painter",
2121
"description": "Substance Painter Pipeline",
2222
"author": "DigiKrafting.Studio",
23-
"version": (1, 8, 6),
23+
"version": (1, 8, 7),
2424
"blender": (2, 80, 0),
2525
"location": "Info Toolbar, File -> Import, File -> Export, Menu",
2626
"wiki_url": "https://github.com/DigiKrafting/blender_addon_substance_painter/wiki",

dks_sp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,9 +555,9 @@ def execute(self, context):
555555
_checked = dks_sp_check_materials()
556556

557557
if bpy.context.preferences.addons[__package__].preferences.option_export_type=='obj':
558-
_export_file = dks_sp_obj_export_sel(self, context)
558+
_export_file = dks_sp_obj_export_scene(self, context)
559559
elif bpy.context.preferences.addons[__package__].preferences.option_export_type=='fbx':
560-
_export_file = dks_sp_fbx_export_sel(self, context)
560+
_export_file = dks_sp_fbx_export_scene(self, context)
561561

562562
if self.open_sp:
563563

0 commit comments

Comments
 (0)