diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-20 12:52:15 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-20 12:52:15 +0100 |
commit | 6570bf598a3b3768fe34827529df5ea0b4b26f0e (patch) | |
tree | 863f6520fd13017dffa5e01ce6b0f60770b4c505 /game/MoveCameraManualyScript.cpp | |
parent | 43c6971591aaff8ada4adc1b1b4146b19d43f8e9 (diff) |
move game files
Diffstat (limited to 'game/MoveCameraManualyScript.cpp')
-rw-r--r-- | game/MoveCameraManualyScript.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/game/MoveCameraManualyScript.cpp b/game/MoveCameraManualyScript.cpp new file mode 100644 index 0000000..0181333 --- /dev/null +++ b/game/MoveCameraManualyScript.cpp @@ -0,0 +1,22 @@ +#include "MoveCameraManualyScript.h" + +using namespace crepe; +using namespace std; + +void MoveCameraManualyScript::init() { + subscribe<KeyPressEvent>( + [this](const KeyPressEvent & ev) -> bool { return this->keypressed(ev); }); +} + +bool MoveCameraManualyScript::keypressed(const KeyPressEvent & event) { + if (event.key == Keycode::RIGHT) { + Transform & cam = this->get_components_by_name<Transform>("camera").front(); + cam.position.x += 100; + return true; + } else if (event.key == Keycode::LEFT) { + Transform & cam = this->get_components_by_name<Transform>("camera").front(); + cam.position.x -= 100; + return true; + } + return false; +} |