Skip to content

Commit 926d7b9

Browse files
committed
fix mm exporter
1 parent 4865e3a commit 926d7b9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

fast64_internal/hm64/mm/skeleton/functions.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from pathlib import Path
66
from ..mm_f3d_gbi import DLFormat, FMesh, TextureExportSettings, ScrollMethod, get_F3D_GBI
77
from ..mm_f3d_writer import getInfoDict
8-
from .. import mm_f3d_writer
8+
from .. import mm_z64_f3d_writer
99
from ....z64.model_classes import OOTModel, OOTGfxFormatter
1010
from ....game_data import game_data
1111
from ....z64.skeleton.properties import OOTSkeletonExportSettings
@@ -89,7 +89,7 @@ def ootProcessBone(
8989
mesh = None
9090
hasSkinnedFaces = None
9191
else:
92-
mesh, hasSkinnedFaces, lastMaterialName = mm_f3d_writer.ootProcessVertexGroup(
92+
mesh, hasSkinnedFaces, lastMaterialName = mm_z64_f3d_writer.ootProcessVertexGroup(
9393
fModel,
9494
meshObj,
9595
boneName,
@@ -332,14 +332,14 @@ def ootConvertArmatureToC(
332332
data.append(skeletonC)
333333

334334
if isCustomExport:
335-
textureArrayData = mm_f3d_writer.writeTextureArraysNew(fModel, flipbookArrayIndex2D)
335+
textureArrayData = mm_z64_f3d_writer.writeTextureArraysNew(fModel, flipbookArrayIndex2D)
336336
data.append(textureArrayData)
337337

338338
data.header += "\n#endif\n"
339339
writeCData(data, os.path.join(path, filename + ".h"), os.path.join(path, filename + ".c"))
340340

341341
if not isCustomExport:
342-
mm_f3d_writer.writeTextureArraysExisting(
342+
mm_z64_f3d_writer.writeTextureArraysExisting(
343343
bpy.context.scene.ootDecompPath, overlayName, isLink, flipbookArrayIndex2D, fModel
344344
)
345345
addIncludeFiles(folderName, path, filename)

0 commit comments

Comments
 (0)