| 201 | } |
| 202 | |
| 203 | void MainLoopController::processFadeInUI() |
| 204 | { |
| 205 | SimulationView::get().draw(); |
| 206 | |
| 207 | pushGlobalStyle(); |
| 208 | processMenubar(); |
| 209 | MainLoopEntityController::get().process(); |
| 210 | OverlayController::get().process(); |
| 211 | SimulationView::get().processSimulationScrollbars(); |
| 212 | popGlobalStyle(); |
| 213 | |
| 214 | increaseAlphaForFadeInUI(); |
| 215 | if (ImGui::GetStyle().Alpha == 1.0f) { |
| 216 | printOverlayMessage(Const::AutosaveFileWithoutPath.string()); |
| 217 | _programState = ProgramState::OperatingMode; |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | void MainLoopController::processOperatingMode() |
| 222 | { |
nothing calls this directly
no test coverage detected