Skip to content

Commit 739f669

Browse files
committed
0_8_1
1 parent 7efc65b commit 739f669

2 files changed

Lines changed: 8 additions & 2 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 UE",
2121
"description": "Export to UE",
2222
"author": "DigiKrafting.Studio",
23-
"version": (0, 8, 0),
23+
"version": (0, 8, 1),
2424
"blender": (2, 80, 0),
2525
"location": "Info Toolbar, File -> Export",
2626
"wiki_url": "https://github.com/DigiKrafting/blender_addon_ue/wiki",

dks_ue.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -993,8 +993,14 @@ def execute(self, context):
993993
_file_name = bpy.context.blend_data.filepath
994994
_file_path = _file_name[0:len(_file_name)-len(bpy.path.basename(_file_name))]
995995

996-
_file_json=dks_ue_folder_crawl(_file_path)
996+
if _dks_ue_options.option_json_search:
997+
998+
_file_json=dks_ue_folder_crawl(_file_path)
997999

1000+
else:
1001+
1002+
_file_json=""
1003+
9981004
if _file_json!="":
9991005

10001006
try:

0 commit comments

Comments
 (0)