ugokeru
This commit is contained in:
parent
1c893940ac
commit
cfcfd3e263
21 changed files with 227 additions and 7 deletions
9
eastern flames/scripts/c_input/c_input.gml
Normal file
9
eastern flames/scripts/c_input/c_input.gml
Normal file
|
@ -0,0 +1,9 @@
|
|||
function c_input() {
|
||||
left = keyboard_check(ord("A")) + keyboard_check(vk_left);
|
||||
down = keyboard_check(ord("S")) + keyboard_check(vk_down);
|
||||
up = keyboard_check(ord("W")) + keyboard_check(vk_up);
|
||||
right = keyboard_check(ord("D")) + keyboard_check(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);
|
||||
}
|
12
eastern flames/scripts/c_input/c_input.yy
Normal file
12
eastern flames/scripts/c_input/c_input.yy
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"isDnD": false,
|
||||
"isCompatibility": false,
|
||||
"parent": {
|
||||
"name": "Scripts",
|
||||
"path": "folders/Scripts.yy",
|
||||
},
|
||||
"resourceVersion": "1.0",
|
||||
"name": "c_input",
|
||||
"tags": [],
|
||||
"resourceType": "GMScript",
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue