Skip to content

Commit

Permalink
swapped to a bool instead of using the null
Browse files Browse the repository at this point in the history
  • Loading branch information
dooly123 committed Dec 29, 2024
1 parent b851d00 commit cd16a2b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void Compute(double TimeAsDouble)
}
public void Apply(double TimeAsDouble, float DeltaTime)
{
if (PoseHandler != null)
if (Ready)
{
if (HasAvatarInitalized)
{
Expand Down

0 comments on commit cd16a2b

Please sign in to comment.