| 67 | } |
| 68 | |
| 69 | void TemporalControlWindow::processTpsInfo() |
| 70 | { |
| 71 | ImGui::Text("Time steps per second"); |
| 72 | |
| 73 | ImGui::PushFont(StyleRepository::get().getLargeFont()); |
| 74 | ImGui::PushStyleColor(ImGuiCol_Text, Const::TextDecentColor /*0xffa07050*/); |
| 75 | ImGui::TextUnformatted(StringHelper::format(_simulationFacade->getTps(), 1).c_str()); |
| 76 | ImGui::PopStyleColor(); |
| 77 | ImGui::PopFont(); |
| 78 | } |
| 79 | |
| 80 | void TemporalControlWindow::processTotalTimestepsInfo() |
| 81 | { |
nothing calls this directly
no test coverage detected