Photon Editor Library 2.0.0-beta
A physically based renderer.
Loading...
Searching...
No Matches
ImguiEditorTheme.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace ph::editor
6{
7
8class ImguiEditorTheme final
9{
10public:
11 ImVec4 warningColor = ImVec4(1.0f, 1.0f, 0.2f, 1.0f);
12 ImVec4 errorColor = ImVec4(1.0f, 0.2f, 0.2f, 1.0f);
13};
14
15}// end namespace ph::editor
Definition ImguiEditorTheme.h:9
ImVec4 warningColor
Definition ImguiEditorTheme.h:11
ImVec4 errorColor
Definition ImguiEditorTheme.h:12
Definition ph_editor.h:10