Started new Add Entity Panel, removed unused shaders, fixed premake5 problems

This commit is contained in:
antopilo
2024-04-02 23:09:33 -04:00
parent 3ed21d0e01
commit f4d71b9977
10 changed files with 177 additions and 41 deletions

View File

@@ -50,7 +50,8 @@ public:
ImGui::Text("Playing");
ImGui::TableNextColumn();
ImGui::Checkbox("##Playing", &component.IsPlaying);
UI::ToggleButton("##Player", &component.IsPlaying);
//ImGui::Checkbox("##Playing", &component.IsPlaying);
ImGui::TableNextColumn();
ComponentTableReset(component.IsPlaying, false);

View File

@@ -3,6 +3,7 @@
#include "../Misc/InterfaceFonts.h"
#include "src/UI/ImUI.h"
#include <src/Vendors/imgui/imgui.h>
#include <src/Resource/FontAwesome5.h>