From 0485eec5a4fe4bcf6024f7ff1d31aad3d8e697d7 Mon Sep 17 00:00:00 2001 From: Lila Date: Sun, 10 Nov 2024 18:16:20 +0000 Subject: [PATCH] [SM64] show custom export path without save textures recent regression caused by me, yay --- fast64_internal/sm64/sm64_objects.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fast64_internal/sm64/sm64_objects.py b/fast64_internal/sm64/sm64_objects.py index bd87622e..d093cfb9 100644 --- a/fast64_internal/sm64/sm64_objects.py +++ b/fast64_internal/sm64/sm64_objects.py @@ -2242,9 +2242,10 @@ def draw_props(self, layout): # pathing for gfx/col exports prop_split(box, self, "export_header_type", "Export Type") - if self.export_header_type == "Custom" and bpy.context.scene.saveTextures: + if self.export_header_type == "Custom": prop_split(box, self, "custom_export_path", "Custom Path") - prop_split(box, self, "custom_include_directory", "Texture Include Directory") + if bpy.context.scene.saveTextures: + prop_split(box, self, "custom_include_directory", "Texture Include Directory") elif self.export_header_type == "Actor": prop_split(box, self, "group_name", "Group")