Skip to content

Commit

Permalink
Fixed stupid typo that was the reason why SM64DS animations weren't w…
Browse files Browse the repository at this point in the history
…orking.
  • Loading branch information
MeltyPlayer committed Dec 2, 2024
1 parent f7d063c commit 4d0ecae
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ var firstChild
}

(int, float)[][] rotationAxes = [
boneAnimationData.TranslationXValues,
boneAnimationData.TranslationYValues,
boneAnimationData.TranslationZValues
boneAnimationData.RotationXValues,
boneAnimationData.RotationYValues,
boneAnimationData.RotationZValues
];
var rotations = boneTracks.UseSeparateEulerRadiansKeyframes();
for (var a = 0; a < rotationAxes.Length; ++a) {
Expand Down

0 comments on commit 4d0ecae

Please sign in to comment.