Add icons + other build settings

This commit is contained in:
2025-06-04 22:53:13 -07:00
parent 364de8a944
commit 90b912e443
15 changed files with 1904 additions and 77 deletions

View File

@@ -18,7 +18,7 @@ public class LeaderboardsMenu : MonoBehaviour
private void Awake()
{
GetTopPlayers(0);
showAmount.onValueChanged.AddListener((int value) =>
showAmount.onValueChanged.AddListener(value =>
{
GetTopPlayers(value);
});
@@ -84,6 +84,10 @@ public class LeaderboardsMenu : MonoBehaviour
{
playerOverlayIcon.transform.localPosition = new Vector2(-16.56f, 14.81f);
}
else if (overlay == "13")
{
playerOverlayIcon.transform.localPosition = new Vector2(-16.54019f, 14.70365f);
}
entryInfo.SetActive(true);
}
refreshButton.interactable = true;