maxgame/addons/popochiu/engine/others/input_actions.gd
2025-07-17 01:49:18 -04:00

17 lines
266 B
GDScript

const INTERACT := 'popochiu-interact'
const LOOK := 'popochiu-look'
const SKIP := 'popochiu-skip'
const ACTIONS := [
{
name = INTERACT,
button = MOUSE_BUTTON_LEFT
},
{
name = LOOK,
button = MOUSE_BUTTON_RIGHT
},
{
name = SKIP,
key = KEY_ESCAPE
}
]