Skip to content

Commit

Permalink
FakeWDの自動生成がうまく反映されない不具合の修正
Browse files Browse the repository at this point in the history
  • Loading branch information
pandrabox committed Sep 16, 2024
1 parent 3beb073 commit ebb70b7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Editor/EmoteManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,14 @@ public static AnimationClip UnhumanoidClip(int n)
/// </summary>
public static AnimationClip FakeWriteDefaultClip(int n)
{
return EmotePrefab(n).FakeWriteDefaultClip ?? EmoteProperty(n).Dividedclip.FakeWriteDefaultClip;
if (EmotePrefab(n).FakeWriteDefaultClip==null)
{
return EmoteProperty(n).Dividedclip.FakeWriteDefaultClip;
}
else
{
return EmotePrefab(n).FakeWriteDefaultClip;
}
}

/// <summary>
Expand Down

0 comments on commit ebb70b7

Please sign in to comment.