Esempio n. 1
0
        public void CheckSlotState()
        {
            if (!item)
            {
                itemManager.SlotEmpty();
            }

            else if (item)
            {
                itemManager.SlotFill();
            }
        }
Esempio n. 2
0
        public void CheckSlotState()
        {
            if (!item)
            {
                itemManager.SlotEmpty();
            }

            else if (item)  // if there's an icon in this slot
            {
                itemManager.SlotFill();
                if (itemManager.isDrop3DGame)
                {
                    Set3DObjectTransform();
                }
            }
        }