Update the rest of the UI on property changes and update properties on node transform

This commit is contained in:
parax0
2016-01-30 18:54:00 -07:00
parent 2e6024b413
commit c7d448225c
29 changed files with 270 additions and 90 deletions

View File

@@ -28,7 +28,7 @@ CRotateNodeCommand::CRotateNodeCommand(INodeEditor *pEditor, const QList<CSceneN
mNodeList.push_back(rotate);
}
mpEditor->SelectionTransformed();
mpEditor->NotifySelectionTransformed();
}
CRotateNodeCommand::~CRotateNodeCommand()
@@ -80,7 +80,7 @@ void CRotateNodeCommand::undo()
}
mpEditor->RecalculateSelectionBounds();
mpEditor->SelectionTransformed();
mpEditor->NotifySelectionTransformed();
mpEditor->UpdateGizmoUI();
}
@@ -95,7 +95,7 @@ void CRotateNodeCommand::redo()
}
mpEditor->RecalculateSelectionBounds();
mpEditor->SelectionTransformed();
mpEditor->NotifySelectionTransformed();
mpEditor->UpdateGizmoUI();
}