We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1d2158 commit 8fd7244Copy full SHA for 8fd7244
2 files changed
rct-graphics-helper/__init__.py
@@ -23,7 +23,7 @@
23
"name": "RCT Graphics Helper",
24
"description": "Render tool to replicate RCT graphics",
25
"author": "Olivier Wervers",
26
- "version": (0, 4, 0),
+ "version": (0, 4, 1),
27
"blender": (2, 79, 0),
28
"location": "Render",
29
"support": "COMMUNITY",
rct-graphics-helper/processors/sub_processes/sprite_processor.py
@@ -60,6 +60,9 @@ def finalize(task_process_context):
60
if callback != None:
61
callback()
62
63
+ if not os.path.exists(master_context.task.get_output_folder()):
64
+ os.mkdir(master_context.task.get_output_folder())
65
+
66
if not os.path.exists(os.path.join(master_context.task.get_output_folder(), "sprites")):
67
os.mkdir(os.path.join(
68
master_context.task.get_output_folder(), "sprites"))
0 commit comments