mirror of
https://github.com/Reuh/ubiquitousse.git
synced 2025-10-27 09:09:30 +00:00
16 lines
618 B
Lua
16 lines
618 B
Lua
return {
|
|
move = {
|
|
horizontal = {
|
|
"child.positive - child.negative",
|
|
positive = { "scancode.right", "scancode.d", "axis.leftx.p", "button.dpright" },
|
|
negative = { "scancode.left", "scancode.a", "axis.leftx.n", "button.dpleft" },
|
|
},
|
|
vertical = {
|
|
"child.positive - child.negative",
|
|
positive = { "scancode.down", "scancode.s", "axis.lefty.p", "button.dpdown" },
|
|
negative = { "scancode.up", "scancode.w", "axis.lefty.n", "button.dpup" },
|
|
},
|
|
},
|
|
confirm = { "scancode['return']", "scancode.space", "scancode.e", "button.a" },
|
|
cancel = { "scancode.escape", "scancode.backspace", "button.b" },
|
|
}
|