Trade menu WIP

This commit is contained in:
2022-05-22 08:51:51 +05:30
parent a83c7bcf91
commit 6018f9490c
6 changed files with 8220 additions and 1260 deletions

View File

@@ -31,7 +31,7 @@ public static class Inventory
public static InventoryItem GetInventoryItem(string itemName)
{
Object[] shopItems = Resources.LoadAll("ScriptableObjects/ShopItems");
Debug.Log("Searching thru " + shopItems.Length + " SOs");
// Debug.Log("Searching thru " + shopItems.Length + " SOs");
foreach (Object itemObj in shopItems)
{
InventoryItem item = itemObj as InventoryItem;