/// <summary>
 /// Executes the action.
 /// </summary>
 public void Execute()
 {
     GizmoTransformedObjectsMessage.SendToInterestedListeners(_gizmoWhichTransformedObjects);
     if (RuntimeEditorApplication.Instance.EnableUndoRedo)
     {
         EditorUndoRedoSystem.Instance.RegisterAction(this);
     }
 }
Example #2
0
 /// <summary>
 /// Executes the action.
 /// </summary>
 public void Execute()
 {
     GizmoTransformedObjectsMessage.SendToInterestedListeners(_gizmoWhichTransformedObjects);
     EditorUndoRedoSystem.Instance.RegisterAction(this);
 }