From de9909df038d1b6bb47bcc82fea5f8dc9dec2491 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Tue, 28 Dec 2021 15:42:50 +0000 Subject: Initial implementation for being able to click in the main window to select something --- ui/manualCameraController.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'ui/manualCameraController.cpp') diff --git a/ui/manualCameraController.cpp b/ui/manualCameraController.cpp index 568c547..74b526b 100644 --- a/ui/manualCameraController.cpp +++ b/ui/manualCameraController.cpp @@ -22,6 +22,18 @@ ManualCameraController::handleInput(const SDL_Event & e, const Position &) case SDLK_RCTRL: ctrl = false; return true; + case SDLK_KP_8: + direction = 0; + break; + case SDLK_KP_4: + direction = -half_pi; + break; + case SDLK_KP_6: + direction = half_pi; + break; + case SDLK_KP_2: + direction = pi; + break; } break; case SDL_MOUSEBUTTONDOWN: -- cgit v1.2.3