aboutsummaryrefslogtreecommitdiff
path: root/game
diff options
context:
space:
mode:
authorMax-001 <maxsmits21@kpnmail.nl>2025-01-11 11:45:05 +0100
committerMax-001 <maxsmits21@kpnmail.nl>2025-01-11 11:45:05 +0100
commit417b001a26a188f91289558d125988c5f853ddbe (patch)
treec62922eb251dc8dd1c4554f7de0110230383485c /game
parent46aec26cae3d2d405aac64e69bbba74944cd7a7b (diff)
Fix: removed button Q and E
Diffstat (limited to 'game')
-rw-r--r--game/preview/PrevPlayerScript.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/game/preview/PrevPlayerScript.cpp b/game/preview/PrevPlayerScript.cpp
index 0126bb2..c63c1c8 100644
--- a/game/preview/PrevPlayerScript.cpp
+++ b/game/preview/PrevPlayerScript.cpp
@@ -68,12 +68,6 @@ bool PrevPlayerScript::key_pressed(const KeyPressEvent & ev) {
case Keycode::P:
this->get_component<AudioSource>().play();
break;
- case Keycode::Q:
- this->get_components_by_name<Camera>("camera").front().get().data.zoom -= 0.01;
- break;
- case Keycode::E:
- this->get_components_by_name<Camera>("camera").front().get().data.zoom += 0.01;
- break;
case Keycode::J:
this->get_components_by_name<Transform>("camera").front().get().position.x
-= move_speed;