🔥 Remove simple play kinematics

This commit is contained in:
Rune Harlyk
2025-10-10 19:33:01 +02:00
committed by Rune Harlyk
parent 46bb5f74b1
commit f3f3864b83
5 changed files with 7 additions and 128 deletions
+4 -4
View File
@@ -67,13 +67,13 @@ class GUI:
keys = p.getKeyboardEvents()
if keys.get(ord("j")):
self.c_yaw += 0.1
self.c_yaw += 0.3
if keys.get(ord("k")):
self.c_yaw -= 0.1
self.c_yaw -= 0.3
if keys.get(ord("m")):
self.c_pitch += 0.1
self.c_pitch += 0.3
if keys.get(ord("i")):
self.c_pitch -= 0.1
self.c_pitch -= 0.3
if keys.get(ord("q")) or keys.get(27):
p.disconnect()