THE KILLSQUARE (does not kill)

This commit is contained in:
the me 2022-08-14 21:36:37 -07:00
parent cfcfd3e263
commit 47cae629df
10 changed files with 123 additions and 6 deletions

View file

@ -4,6 +4,12 @@ function c_input() {
up = keyboard_check(ord("W")) + keyboard_check(vk_up);
right = keyboard_check(ord("D")) + keyboard_check(vk_right);
leftp = keyboard_check_pressed(ord("A")) + keyboard_check_pressed(vk_left);
downp = keyboard_check_pressed(ord("S")) + keyboard_check_pressed(vk_down);
upp = keyboard_check_pressed(ord("W")) + keyboard_check_pressed(vk_up);
rightp = keyboard_check_pressed(ord("D")) + keyboard_check_pressed(vk_right);
select = mouse_check_button_pressed(mb_left) + keyboard_check_pressed(vk_enter);
back = mouse_check_button_pressed(mb_right) + keyboard_check_pressed(vk_escape);
stop = keyboard_check(vk_shift);
}