summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorFrederico Linhares <fred@linhares.blue>2022-09-23 10:58:25 -0300
committerFrederico Linhares <fred@linhares.blue>2022-09-23 10:58:25 -0300
commit28de1fe8713aba2c4bb23fc8640adb2747373b66 (patch)
tree20acc92f084a0833293651a9127d3c20271e8d70 /test
parent78db82c0dac8db90a3de1004e5428f225947b2b9 (diff)
refa Use Vulkan coordinates instead of OpenGL
Diffstat (limited to 'test')
-rw-r--r--test/src/main.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/main.rb b/test/src/main.rb
index 40a7c79..b2e91e9 100644
--- a/test/src/main.rb
+++ b/test/src/main.rb
@@ -48,9 +48,9 @@ end
def key_down(key)
case key
when CandyGear::Key::I
- $camera_rotation.rotate(CAMERA_ROTATION_SPEED, 0.0);
- when CandyGear::Key::K
$camera_rotation.rotate(-CAMERA_ROTATION_SPEED, 0.0);
+ when CandyGear::Key::K
+ $camera_rotation.rotate(CAMERA_ROTATION_SPEED, 0.0);
when CandyGear::Key::J
$camera_rotation.rotate(0.0, CAMERA_ROTATION_SPEED);
when CandyGear::Key::L