| 89 | } |
| 90 | |
| 91 | void TemporalControlWindow::processRealTimeInfo() |
| 92 | { |
| 93 | ImGui::Text("Real-time"); |
| 94 | |
| 95 | ImGui::PushFont(StyleRepository::get().getLargeFont()); |
| 96 | ImGui::PushStyleColor(ImGuiCol_Text, Const::TextDecentColor); |
| 97 | ImGui::TextUnformatted(StringHelper::format(_simulationFacade->getRealTime()).c_str()); |
| 98 | ImGui::PopStyleColor(); |
| 99 | ImGui::PopFont(); |
| 100 | } |
| 101 | |
| 102 | void TemporalControlWindow::processTpsRestriction() |
| 103 | { |
nothing calls this directly
no test coverage detected