Player name is displayed on the host card when their answer is being revealed during the final round.

This commit is contained in:
Jamie Greunbaum 2025-06-08 04:00:36 -04:00
parent f8a04cca13
commit 6fa9fbb6af

View File

@ -629,7 +629,7 @@ public class GameManager : UdonSharpBehaviour
{
int PlayerNumber = _FinalRoundPlayersSortedByScore[PlayerPlace - 1];
_FinalRoundInterface.HeaderUI.text = "Number " + PlayerPlace + ": Player " + PlayerNumber;
_FinalRoundInterface.HeaderUI.text = "Player: " + _PlayerPodiums[PlayerNumber - 1].PlayerName;
_PlayerPodiums[PlayerNumber - 1].EnableBuzzInEffect(true);
EnableInteraction("Assign Points");