Tweaks and uncommitted stuff

I forgor
This commit is contained in:
2025-06-02 15:18:52 -07:00
parent fa71995974
commit 0c6401cb64
8 changed files with 105 additions and 90 deletions

23
Assets/Scripts/Tools.cs Normal file
View File

@@ -0,0 +1,23 @@
using UnityEngine;
public static class Tools
{
public static Sprite GetIconForUser(int user)
{
if (user == 1)
{
return Resources.Load<Sprite>("Icons/Icons/bird_-1");
}
else if (user == 2)
{
return Resources.Load<Sprite>("Icons/Icons/bird_-2");
}
else if (user == 4)
{
return Resources.Load<Sprite>("Icons/Icons/bird_-3");
} else
{
return Resources.Load<Sprite>("Icons/Icons/bird_1");
}
}
}