From c67b70ff057d242c637b073d93dcefb391dff76e Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Sat, 22 Jul 2023 13:08:50 -0400 Subject: [PATCH] Removed unused framebuffer --- Editor/src/Windows/EditorInterface.cpp | 1 - Editor/src/Windows/EditorInterface.h | 1 - 2 files changed, 2 deletions(-) diff --git a/Editor/src/Windows/EditorInterface.cpp b/Editor/src/Windows/EditorInterface.cpp index 0526ec3b..16d21fae 100644 --- a/Editor/src/Windows/EditorInterface.cpp +++ b/Editor/src/Windows/EditorInterface.cpp @@ -56,7 +56,6 @@ namespace Nuake { filesystem = new FileSystemUI(this); _WelcomeWindow = new WelcomeWindow(this); _audioWindow = new AudioWindow(); - m_EntitySelectionFramebuffer = CreateRef(false, Vector2(1280, 720)); } void EditorInterface::Init() diff --git a/Editor/src/Windows/EditorInterface.h b/Editor/src/Windows/EditorInterface.h index 740b3a1b..f71a9f8c 100644 --- a/Editor/src/Windows/EditorInterface.h +++ b/Editor/src/Windows/EditorInterface.h @@ -35,7 +35,6 @@ namespace Nuake ImGuizmo::MODE CurrentMode = ImGuizmo::WORLD; Ref m_SelectedMaterial; Ref m_CurrentDirectory; - Ref m_EntitySelectionFramebuffer; bool m_IsMaterialSelected = false; public: