Skip to content

Commit

Permalink
Avatar: Fix hairShade Rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
seotbeo committed Jan 7, 2025
1 parent 87d0e06 commit 33db1f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WzComparerR2.Avatar/AvatarCanvas.cs
Original file line number Diff line number Diff line change
Expand Up @@ -949,9 +949,9 @@ private void CreateBone(Bone root, Tuple<Wz_Node, Wz_Node, int>[] frameNodes, bo
{
continue;
}
if (childNode.Text == "hairShade")
if (linkNode.Text == "hairShade")
{
linkNode = childNode.FindNodeByPath("0");
linkNode = linkNode.FindNodeByPath("0");
if (linkNode == null)
{
continue;
Expand Down

0 comments on commit 33db1f1

Please sign in to comment.