change arrow keys (left, down, right) to letter keys (s, d, f) and arrow up to letter key 'k', because I think it is more comfortable

This commit is contained in:
2024-12-20 16:51:21 +00:00
parent 1e2ebe066f
commit aeb3756e5b
6 changed files with 42 additions and 5 deletions

View File

@@ -6,6 +6,14 @@
int PRESS = GLFW_PRESS;
int RELEASE = GLFW_RELEASE;
int KEY_S = GLFW_KEY_S;
int KEY_D = GLFW_KEY_D;
int KEY_F = GLFW_KEY_F;
int KEY_J = GLFW_KEY_J;
int KEY_K = GLFW_KEY_K;
int KEY_L = GLFW_KEY_L;
int ARROW_UP = GLFW_KEY_UP;
int ARROW_DOWN = GLFW_KEY_DOWN;
int ARROW_LEFT = GLFW_KEY_LEFT;