Skip to content

Commit

Permalink
Deleting Model Changes Position (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
datacrystals committed May 9, 2022
1 parent 81a037a commit b3cc85c
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ Window_SceneTree::Window_SceneTree(ERS_CLASS_SceneManager* SceneManager, ERS_STR

Subwindow_ModelReplaceModal_ = std::make_unique<Subwindow_ModelReplaceModal>(SceneManager_);

Subwindow_DeleteScene_ = std::make_unique<Subwindow_DeleteScene>(SceneManager_);
Subwindow_DeleteModel_ = std::make_unique<Subwindow_DeleteModel>(SceneManager_);
Subwindow_DeletePointLight_ = std::make_unique<Subwindow_DeletePointLight>(SceneManager_);
Subwindow_DeleteDirectionalLight_ = std::make_unique<Subwindow_DeleteDirectionalLight>(SceneManager_);
Subwindow_DeleteSpotLight_ = std::make_unique<Subwindow_DeleteSpotLight>(SceneManager_);
Subwindow_DeleteScene_ = std::make_unique<Subwindow_DeleteScene>(SceneManager_, Cursors3D_);
Subwindow_DeleteModel_ = std::make_unique<Subwindow_DeleteModel>(SceneManager_, Cursors3D_);
Subwindow_DeletePointLight_ = std::make_unique<Subwindow_DeletePointLight>(SceneManager_, Cursors3D_);
Subwindow_DeleteDirectionalLight_ = std::make_unique<Subwindow_DeleteDirectionalLight>(SceneManager_, Cursors3D_);
Subwindow_DeleteSpotLight_ = std::make_unique<Subwindow_DeleteSpotLight>(SceneManager_, Cursors3D_);

SystemUtils_->Logger_->Log("Finished Initializing ERS GUI Window_SceneTree", 5);

Expand Down

0 comments on commit b3cc85c

Please sign in to comment.