Other Widget

This commit is contained in:
CatChow0 2024-03-22 17:58:28 +01:00
parent fffaa8b048
commit 8835d15e7c
4 changed files with 21 additions and 3 deletions

View File

@ -150,6 +150,8 @@ bool SystemClass::Frame()
float speed = m_Application->GetSpeed();
m_imguiManager->WidgetSpeedSlider(&speed);
m_Application->SetSpeed(speed);
m_imguiManager->WidgetButton();
m_imguiManager->WidgetFPS();
ImGui::End();

View File

@ -3,7 +3,6 @@ Pos=60,60
Size=400,400
[Window][Khaotic Engine]
Pos=10,10
Size=694,354
Collapsed=1
Pos=31,27
Size=694,367

View File

@ -45,4 +45,19 @@ void imguiManager::NewFrame()
void imguiManager::WidgetSpeedSlider(float* speed)
{
ImGui::SliderFloat("Speed", speed, 0.0f, 100.0f);
}
void imguiManager::WidgetButton()
{
static int counter = 0;
if (ImGui::Button("Button")) // Buttons return true when clicked (most widgets return true when edited/activated)
counter++;
ImGui::SameLine();
ImGui::Text("counter = %d", counter);
}
void imguiManager::WidgetFPS()
{
ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / io->Framerate, io->Framerate);
}

View File

@ -20,6 +20,8 @@ public:
// Widgets
void WidgetSpeedSlider(float* speed);
void WidgetButton();
void WidgetFPS();
private:
ImGuiIO* io;