Esempio n. 1
0
        // ALL NEEDED EVENTS ARE HERE
        public void StartDragging(IDroppable droppable)
        {
            if (this.droppable != null)
            {
                return;
            }

            audioManager.PlaySound(Sfx.UIPopup);
            this.droppable = droppable;
            droppable.StartDrag(x => RemoveFromUpdateAndPlaceholders(x));
        }
Esempio n. 2
0
        // ALL NEEDED EVENTS ARE HERE
        public void StartDragging(IDroppable droppable)
        {
            if (this.droppable != null)
            {
                return;
            }

            objectFlying = true;
            audioManager.PlaySound(Sfx.UIPopup);
            this.droppable = droppable;
            droppable.StartDrag(x => RemoveFromUpdate());
        }
Esempio n. 3
0
        // ALL NEEDED EVENTS ARE HERE
        public void StartDragging(IDroppable droppable)
        {
            if (this.droppable != null)
            {
                return;
            }

            audioManager.PlayUIPopup();

            this.droppable = droppable;
            PutDroppableOnTopOfList(droppable);
            droppable.StartDrag(x => RemoveFromUpdateAndPlaceholders(x));
        }