1
0
mirror of synced 2025-02-20 20:51:35 +01:00

Add new bone children to the bone list for rendering

This commit is contained in:
KillzXGaming 2019-03-24 11:35:43 -04:00
parent ab44950984
commit 0c37b03bb7
4 changed files with 4 additions and 0 deletions

Binary file not shown.

View File

@ -278,6 +278,7 @@ namespace Bfres.Structs
BfresWiiU.ReadBone(bn, BoneU, false);
Nodes.Add(bn);
skeletonParent.bones.Add(bn);
}
else
{
@ -286,6 +287,7 @@ namespace Bfres.Structs
BfresSwitch.ReadBone(bn, Bone, false);
Nodes.Add(bn);
skeletonParent.bones.Add(bn);
}
}
@ -307,6 +309,7 @@ namespace Bfres.Structs
BfresWiiU.ReadBone(bn, BoneU, false);
Nodes.Add(bn);
skeletonParent.bones.Add(bn);
}
else
{
@ -316,6 +319,7 @@ namespace Bfres.Structs
BfresSwitch.ReadBone(bn, Bone, false);
Nodes.Add(bn);
skeletonParent.bones.Add(bn);
}
}
}