Skip to content

Commit

Permalink
Merge pull request #119 from Nestorboy/height-changed-type-fix
Browse files Browse the repository at this point in the history
Fix type mismatch during inital OnAvatarEyeHeightChanged call
  • Loading branch information
momo-the-monster authored Jan 14, 2025
2 parents 43e43b0 + 419e39f commit 835a346
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private void OnPlayerJoined(ClientSimOnPlayerJoinedEvent joinEvent)
udonEventSender.RunEvent("_onAvatarChanged", ("player", joinEvent.player));
udonEventSender.RunEvent("_onAvatarEyeHeightChanged",
("player", joinEvent.player),
("prevEyeHeightAsMeters", 0));
("prevEyeHeightAsMeters", 0f));
}

public bool GetManualAvatarScalingAllowed() => manualScalingAllowed;
Expand Down

0 comments on commit 835a346

Please sign in to comment.