added UI dodging nozzle on phones

This commit is contained in:
Mausham
2025-12-18 12:32:06 -08:00
parent f19bbb9d8c
commit ef015c6665
24 changed files with 534 additions and 22 deletions

View File

@@ -10,6 +10,7 @@ namespace Darkmatter.Presentation
public GameObject leaderBoardScreen;
public Button ExitButton;
public LeaderBoardData LBplayerData;
public TextMeshProUGUI loadingText;
public void Show()
{
@@ -20,5 +21,10 @@ namespace Darkmatter.Presentation
{
leaderBoardScreen.SetActive(false);
}
public void ShowLoading(bool shouldShow)
{
loadingText.gameObject.SetActive(shouldShow);
}
}
}