Ejemplo n.º 1
0
 /// <summary>
 /// Perform the actions needed when the left-mouse is moved, normally during dragging
 /// </summary>
 public void OnLeftMouseMoved()
 {
     if (activeMouseDragAction == null)
     {
         return;
     }
     activeMouseDragAction.Dragging();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Perform the actions needed when the left-mouse is moved, normally during dragging
 /// </summary>
 public void OnLeftMouseMoved()
 {
     activeMouseDragAction?.Dragging();
 }