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