| 111 | } |
| 112 | |
| 113 | void SpatialControlWindow::processCenterButton() |
| 114 | { |
| 115 | if (AlienImGui::ToolbarButton(AlienImGui::ToolbarButtonParameters().text(ICON_FA_CROSSHAIRS))) { |
| 116 | Viewport::get().setZoomFactor(1.0f); |
| 117 | auto worldSize = toRealVector2D(_simulationFacade->getWorldSize()); |
| 118 | Viewport::get().setCenterInWorldPos({worldSize.x / 2, worldSize.y / 2}); |
| 119 | } |
| 120 | AlienImGui::Tooltip("Center"); |
| 121 | } |
| 122 | |
| 123 | void SpatialControlWindow::processResizeButton() |
| 124 | { |
nothing calls this directly
no test coverage detected