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 @@ CScaleNodeCommand::CScaleNodeCommand(INodeEditor *pEditor, const QList<CSceneNod
mNodeList.push_back(scale);
}
mpEditor->SelectionTransformed();
mpEditor->NotifySelectionTransformed();
}
CScaleNodeCommand::~CScaleNodeCommand()
@@ -80,7 +80,7 @@ void CScaleNodeCommand::undo()
}
mpEditor->RecalculateSelectionBounds();
mpEditor->SelectionTransformed();
mpEditor->NotifySelectionTransformed();
mpEditor->UpdateGizmoUI();
}
@@ -95,7 +95,7 @@ void CScaleNodeCommand::redo()
}
mpEditor->RecalculateSelectionBounds();
mpEditor->SelectionTransformed();
mpEditor->NotifySelectionTransformed();
mpEditor->UpdateGizmoUI();
}