Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ class Fast64_ObjectProperties(bpy.types.PropertyGroup):

sm64: bpy.props.PointerProperty(type=SM64_ObjectProperties, name="SM64 Object Properties")
oot: bpy.props.PointerProperty(type=OOT_ObjectProperties, name="Z64 Object Properties")
mk64: bpy.props.PointerProperty(type=MK64_Properties, name="MK64 Object Properties")
mk64: bpy.props.PointerProperty(type=MK64_ObjectProperties, name="MK64 Object Properties")


class Fast64_CurveProperties(bpy.types.PropertyGroup):
Expand Down
2 changes: 2 additions & 0 deletions fast64_internal/f3d/f3d_material.py
Original file line number Diff line number Diff line change
Expand Up @@ -4427,6 +4427,8 @@ def draw(self, _context):
paths += bpy.utils.preset_paths("f3d/oot_f3dex3")
elif game == "mm":
paths += bpy.utils.preset_paths("f3d/mm")
elif game == "mk64":
paths += bpy.utils.preset_paths("f3d/mk64")
self.path_menu(
paths,
self.preset_operator,
Expand Down
Loading