Moved selection handling code to CNodeSelection, implemented instance spawning, half-implemented instance deleting (this build is buggy/crash prone)

This commit is contained in:
parax0
2016-03-13 22:30:04 -06:00
parent b2699eb96f
commit f02f7ada0f
64 changed files with 1259 additions and 754 deletions

View File

@@ -79,7 +79,6 @@ void CScaleNodeCommand::undo()
scale.pNode->SetScale(scale.initialScale);
}
mpEditor->RecalculateSelectionBounds();
mpEditor->NotifySelectionTransformed();
mpEditor->UpdateGizmoUI();
}
@@ -94,7 +93,6 @@ void CScaleNodeCommand::redo()
scale.pNode->SetScale(scale.newScale);
}
mpEditor->RecalculateSelectionBounds();
mpEditor->NotifySelectionTransformed();
mpEditor->UpdateGizmoUI();
}