Other Widget

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

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);
}