UI HUGE UPDATE

This commit is contained in:
2026-06-25 11:48:56 +08:00
parent bd2a06f4c7
commit b2a1e307a4
1806 changed files with 359863 additions and 20822 deletions
+4 -1
View File
@@ -8,13 +8,16 @@ public class storeItemSO : ScriptableObject
[Header("Basic Info")]
public string itemName;
public Sprite itemIcon;
public ItemRarity itemRarity = ItemRarity.None;
public ItemRarity itemRarity = ItemRarity.Common;
public int itemID; // Unique identifier for the item
public int itemSinglePurchaseQty; // 物品单次购买数量
public int itemPurchaseQuota; // 物品限购配额,-1为不限购
[TextArea(3, 3)] public string itemDescription;
[TextArea(3, 10)] public string itemDetailedDescription; // 这个是用来在物品详情界面显示的更详细的描述文本的
[Header("Usage")]
public ItemUsageTag itemUsageTag = ItemUsageTag.Auto;
[Header("Item Type")]
public bool isOnShelf = true; // Indicates if the item is currently available for purchase
public bool canbepurchased = true; // Indicates if the item can be purchased with coins