"create an inventory system that is easy to customize from the Unity UI"
xxxxxxxxxx
using UnityEngine;
using UnityEngine.UI;
using System.Collections.Generic;
public class Inventory : MonoBehaviour
{
public List<Item> items = new List<Item>();
public GameObject inventoryUI;
public GameObject itemSlotPrefab;
public Transform itemSlotPanel;
void Start()
{
inventoryUI.SetActive(false);
}
void Update()
{
if (Input.GetKeyDown(KeyCode.I))
{