diff --git a/stdlib/button.lua b/stdlib/button.lua index f629dc9722b8d5a273e353aac625aab308e1f241..7ea8e38e85479d814c8bb10339dbfeed05e43b38 100644 --- a/stdlib/button.lua +++ b/stdlib/button.lua @@ -1,16 +1,29 @@ local button = {} -button.PAD_UP = { keyboard = 87, xbox = 1, playstation = 1 } -- Key: W -button.PAD_DOWN = { keyboard = 83, xbox = 3, playstation = 2 } -- Key: S -button.PAD_LEFT = { keyboard = 65, xbox = 4, playstation = 3 } -- Key: A -button.PAD_RIGHT = { keyboard = 68, xbox = 2, playstation = 4 } -- Key: D +-- button.PAD_UP = { keyboard = 87, xbox = 1, playstation = 1 } -- Key: W +-- button.PAD_DOWN = { keyboard = 83, xbox = 3, playstation = 2 } -- Key: S +-- button.PAD_LEFT = { keyboard = 65, xbox = 4, playstation = 3 } -- Key: A +-- button.PAD_RIGHT = { keyboard = 68, xbox = 2, playstation = 4 } -- Key: D + +-- button.A = { keyboard = 76, xbox = 7, playstation = 7 } -- Key: L +-- button.B = { keyboard = 80, xbox = 6, playstation = 6 } -- Key: P +-- button.X = { keyboard = 75, xbox = 8, playstation = 8 } -- Key: K +-- button.Y = { keyboard = 79, xbox = 5, playstation = 5 } -- Key: O + +-- button.SELECT = { keyboard = 81, xbox = 13, playstation = 13 } -- Key: Q +-- button.START = { keyboard = 69, xbox = 15, playstation = 15 } -- Key: E + +button.PAD_UP = { keyboard = 265, xbox = 1, playstation = 1 } -- Key: Up arrow +button.PAD_DOWN = { keyboard = 264, xbox = 3, playstation = 2 } -- Key: Down arrow +button.PAD_LEFT = { keyboard = 263, xbox = 4, playstation = 3 } -- Key: Left arrow +button.PAD_RIGHT = { keyboard = 262, xbox = 2, playstation = 4 } -- Key: Right arrow -button.A = { keyboard = 76, xbox = 7, playstation = 7 } -- Key: L -button.B = { keyboard = 80, xbox = 6, playstation = 6 } -- Key: P -button.X = { keyboard = 75, xbox = 8, playstation = 8 } -- Key: K -button.Y = { keyboard = 79, xbox = 5, playstation = 5 } -- Key: O +button.A = { keyboard = 65, xbox = 7, playstation = 7 } -- Key: A +button.B = { keyboard = 83, xbox = 6, playstation = 6 } -- Key: S +button.X = { keyboard = 81, xbox = 8, playstation = 8 } -- Key: Q +button.Y = { keyboard = 87, xbox = 5, playstation = 5 } -- Key: W -button.SELECT = { keyboard = 81, xbox = 13, playstation = 13 } -- Key: Q -button.START = { keyboard = 69, xbox = 15, playstation = 15 } -- Key: E +button.SELECT = { keyboard = 68, xbox = 13, playstation = 13 } -- Key: D +button.START = { keyboard = 69, xbox = 15, playstation = 15 } -- Key: E return button