Example #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();
 }
Example #2
0
 /// <summary>
 /// Perform the actions needed when the left-mouse is moved, normally during dragging
 /// </summary>
 public void OnLeftMouseMoved()
 {
     activeMouseDragAction?.Dragging();
 }