UI HUGE UPDATE

This commit is contained in:
FloatGaming
2026-06-25 11:48:56 +08:00
parent bd2a06f4c7
commit b2a1e307a4
1806 changed files with 359863 additions and 20822 deletions
@@ -11,11 +11,12 @@ public class bagItemPreviewPrefab : MonoBehaviour
public Text itemDescription;
public TextMeshProUGUI itemAmount;
public void Bind(Color backgroundColor, Sprite icon, string displayName, string usage, string description, string amountText)
public void Bind(Color backgroundColor, Sprite backgroundSprite, Sprite icon, string displayName, string usage, string description, string amountText)
{
if (btm_img != null)
{
btm_img.color = backgroundColor;
btm_img.sprite = backgroundSprite;
btm_img.color = backgroundSprite != null ? Color.white : backgroundColor;
}
if (profileImage != null)