17 lines
266 B
GDScript
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
|
|
}
|
|
]
|