| 921 | let cursor_render_before = self.camera.screen_to_render( |
| 922 | DVec2::new(self.cursor_position.x as f64, self.cursor_position.y as f64), |
| 923 | viewport, |
| 924 | ); |
| 925 | |
| 926 | if zoom_x { |
| 927 | self.camera.half_extents.x *= zoom_factor; |
| 928 | } |
| 929 | if zoom_y { |
| 930 | self.camera.half_extents.y *= zoom_factor; |
nothing calls this directly
no outgoing calls
no test coverage detected