aboutsummaryrefslogtreecommitdiff
path: root/source/30-game/EditorCorePrivate.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-07-07 19:31:19 -0700
committerrtk0c <[email protected]>2022-07-07 19:31:19 -0700
commiteeed6d84f4324387597be05e6ed1df4b3adfca9c (patch)
tree039f2ed112d8671001e2ba4d11533ea1406a41b0 /source/30-game/EditorCorePrivate.hpp
parenta98b0495a957ed15900c052bcad00b3c48367546 (diff)
Changeset: 80 Add skeleton for keyboard management GUI in editor
Diffstat (limited to 'source/30-game/EditorCorePrivate.hpp')
-rw-r--r--source/30-game/EditorCorePrivate.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/30-game/EditorCorePrivate.hpp b/source/30-game/EditorCorePrivate.hpp
index e70f5ec..4071e7a 100644
--- a/source/30-game/EditorCorePrivate.hpp
+++ b/source/30-game/EditorCorePrivate.hpp
@@ -1,10 +1,10 @@
#pragma once
-#include "EditorCore.hpp"
-
#include "App.hpp"
+#include "EditorAccessories.hpp"
#include "EditorAttachment.hpp"
#include "EditorCommandPalette.hpp"
+#include "EditorCore.hpp"
#include "EditorUtils.hpp"
#include "EditorWorldGuides.hpp"
#include "GameObject.hpp"
@@ -86,6 +86,7 @@ private:
EditorCommandPalette mEdCommandPalette;
EditorInspector mEdInspector;
EditorContentBrowser mEdContentBrowser;
+ EditorKeyboardViewer mEdKbViewer;
EditorWorldGuides mEdGuides;
GuizmoState mGuizmo;
glm::vec3 mDragCam_CamInitial;
@@ -101,6 +102,7 @@ private:
bool mWindowVisible_ContentBrowser = true;
bool mWindowVisible_WorldStructure = true;
bool mWindowVisible_WorldProperties = true;
+ bool mWindowVisible_KeyboardViewer = false;
bool mDragCam_Happening = false;
bool mMoveCamKeyboard = false;
bool mMoveCamScrollWheel = false;