| 48 | } |
| 49 | |
| 50 | void EditorController::process() |
| 51 | { |
| 52 | if (!_on) { |
| 53 | return; |
| 54 | } |
| 55 | |
| 56 | processInspectorWindows(); |
| 57 | |
| 58 | EditorModel::get().setForceNoRollout(ImGui::GetIO().KeyShift); |
| 59 | |
| 60 | if (_simulationFacade->updateSelectionIfNecessary()) { |
| 61 | EditorModel::get().update(); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | |
| 66 | bool EditorController::areInspectionWindowsActive() const |
no test coverage detected