aboutsummaryrefslogtreecommitdiff
path: root/source/EditorResources.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-04-17 20:08:57 -0700
committerrtk0c <[email protected]>2022-04-17 20:08:57 -0700
commit5424a1d5434e3ddd911a504719918c2df027e2fd (patch)
tree6275aab13140d81dcc46c8290e73ac9a8bbb5605 /source/EditorResources.hpp
parentafcac59c7d04f4337d6b04ebed8cac7e871ccc50 (diff)
Changeset: 8 Initial work on sprites and texture system
Diffstat (limited to 'source/EditorResources.hpp')
-rw-r--r--source/EditorResources.hpp8
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);