Esempio n. 1
0
 protected virtual void DropOut(Drag dragComponent)
 {
     Debug.Log("Out");
 }
Esempio n. 2
0
 protected virtual void FailDrop(Drag dragComponent)
 {
     Debug.Log("Fail Drop");
     dragComponent.RestoreToInitialPosition();
 }
Esempio n. 3
0
 protected virtual void DropHover(Drag dragComponent)
 {
     Debug.Log("Hover");
 }
Esempio n. 4
0
 protected virtual void SuccessDrop(Drag dragComponent)
 {
     Debug.Log("Successful Drop");
 }