Example #1
0
        public void UpdateQuickSlots()
        {
            InventoryManagerNew im = dontDestroy.currentGameManager.GetComponent <InventoryManagerNew>();

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