|
1
|
function scr_controls_battle_itemscr_controls_battle_item
function scr_controls_battle_item()
{
key_right = global.right_keyp;
key_left = global.left_keyp;
key_down = global.down_keyp;
key_up = global.up_keyp;
key_select = keyboard_multicheck_pressed(0);
key_revert = keyboard_multicheck_pressed(1);
} ()
|
|
2
|
{
|
|
3
|
key_right = global.right_keyp;
|
|
4
|
key_left = global.left_keyp;
|
|
5
|
key_down = global.down_keyp;
|
|
6
|
key_up = global.up_keyp;
|
|
7
|
key_select = keyboard_multicheck_pressed(0);
|
|
8
|
key_revert = keyboard_multicheck_pressed(1);
|
|
9
|
}
|