This commit is contained in:
Janis
2023-02-22 13:50:33 +01:00
parent 13902bc589
commit a2e4459b5c
4 changed files with 6 additions and 10 deletions

View File

@@ -32,14 +32,10 @@ public class InventoryUI : MonoBehaviour
}
private void UpdateSlots()
{
Debug.Log("Update slots");
int i = 0;
foreach (SlotUI slotUi in slotUIList)
{
slotUi.SetInventoryItem(playerInventory.items[i]);
i++;
}
}