diff options
author | hnOsmium0001 <[email protected]> | 2022-04-17 20:08:57 -0700 |
---|---|---|
committer | hnOsmium0001 <[email protected]> | 2022-04-17 20:08:57 -0700 |
commit | d43508ba4843801cbbf1f42a27af260d4eef5701 (patch) | |
tree | 39c51368cfe8ec097c08f198877cf07e9ff835ee /source/EditorResources.hpp | |
parent | 509201784d6525fc26345e55a56ab81e4a7616b3 (diff) |
Initial work on sprites and texture system
Diffstat (limited to 'source/EditorResources.hpp')
-rw-r--r-- | source/EditorResources.hpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/source/EditorResources.hpp b/source/EditorResources.hpp index 81145a3..65969f0 100644 --- a/source/EditorResources.hpp +++ b/source/EditorResources.hpp @@ -11,6 +11,7 @@ private: P_Settings, P_Shader, P_Material, + P_Ires, }; static constexpr float kSplitterThickness = 3.0f; @@ -22,9 +23,10 @@ private: EditorInstance* mEditor; Pane mPane = P_Settings; - float splitterLeft = kLeftPaneMinWidth; - float splitterRight = 0.0f; - bool docked = true; + float mBrowserHeight = 0.5f; + float mSplitterLeft = kLeftPaneMinWidth; + float mSplitterRight = 0.0f; + bool mDocked = true; public: EditorContentBrowser(EditorInstance* editor); |