Exemplo n.º 1
0
        public void UpdateQuickSlots()
        {
            InventoryManagerNew im = dontDestroy.currentGameManager.GetComponent <InventoryManagerNew>();

            foreach (InventoryQuickSlot slot in allQuickSlots)
            {
                if (im.HasItem(slot.id) == false)
                {
                    slot.RemoveFromSlot();
                }
            }
        }
Exemplo n.º 2
0
 void Start()
 {
     inventoryManager = GetComponent <InventoryManagerNew>();
     guiManager       = GetComponent <GUIManager>();
 }
Exemplo n.º 3
0
 void Awake()
 {
     invMg = (invMg == null) ? dontDestroy.currentGameManager.GetComponent <InventoryManagerNew>() : invMg;
 }
Exemplo n.º 4
0
 void Start()
 {
     invMg = dontDestroy.currentGameManager.GetComponent <InventoryManagerNew>();
 }