Skip to content

Commit

Permalink
Fixed writing bones for models with single bone
Browse files Browse the repository at this point in the history
  • Loading branch information
WoefulWolf committed Jun 12, 2023
1 parent c8f2d7e commit 819c918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wmb/exporter/bones/bones.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def get_bones(self):
tPosition = localPosition

blenderName = bone.name
bone = [ID, parentIndex, localPosition.xyz, localRotation, localScale.xyz, position.xyz, rotation, scale.xyz, tPosition.xyz, blenderName]
bone = [ID, parentIndex, localPosition.xyz, localRotation.xyz, localScale.xyz, position.xyz, rotation.xyz, scale.xyz, tPosition.xyz, blenderName]
_bones.append(bone)
break

Expand Down

0 comments on commit 819c918

Please sign in to comment.