| 181 | } |
| 182 | |
| 183 | void TemporalControlWindow::processCreateFlashbackButton() |
| 184 | { |
| 185 | auto result = AlienImGui::ToolbarButton(AlienImGui::ToolbarButtonParameters().text(ICON_FA_CAMERA)); |
| 186 | AlienImGui::Tooltip("Creating in-memory flashback: It saves the content of the current world to the memory."); |
| 187 | if (result) { |
| 188 | delayedExecution([this] { onSnapshot(); }); |
| 189 | |
| 190 | printOverlayMessage("Creating flashback ...", true); |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | void TemporalControlWindow::processLoadFlashbackButton() |
| 195 | { |
nothing calls this directly
no test coverage detected