Skip to content

Commit

Permalink
[SM64] show custom export path without save textures
Browse files Browse the repository at this point in the history
recent regression caused by me, yay
  • Loading branch information
Lilaa3 committed Nov 10, 2024
1 parent b0bad2f commit 0485eec
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions fast64_internal/sm64/sm64_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 0485eec

Please sign in to comment.