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