summaryrefslogtreecommitdiffhomepage
path: root/main.lua
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2016-08-15 20:32:15 +0200
committerAki <nthirtyone@gmail.com>2016-08-15 20:32:15 +0200
commit37fa93429a841c78fde4510250bd47bb6da9727e (patch)
treed629cb393dac1aef5dbf8e46ee8ba0f1bc95013a /main.lua
parent368a26395c906775441e6a5302491f60172c2920 (diff)
downloadroflnauts-37fa93429a841c78fde4510250bd47bb6da9727e.zip
roflnauts-37fa93429a841c78fde4510250bd47bb6da9727e.tar.gz
roflnauts-37fa93429a841c78fde4510250bd47bb6da9727e.tar.bz2
Controller module additional callbacks
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/main.lua b/main.lua
index 837e156..cb66aa0 100644
--- a/main.lua
+++ b/main.lua
@@ -55,9 +55,7 @@ function love.load()
Font:setLineHeight(9/16)
love.graphics.setFont(Font)
-- Controller
- love.joystick.loadGamepadMappings("gamecontrollerdb.txt")
- Controller.registerSet("left", "right", "up", "down", "return", "rshift")
- Controller.registerSet("a", "d", "w", "s", "g", "h")
+ Controller.load()
-- Scene
Scene = Menu:new()
end
@@ -78,6 +76,7 @@ function love.draw()
end
-- Pass input to Controller
function love.joystickadded(joystick) Controller.joystickadded(joystick) end
+function love.gamepadaxis(joystick, axis, value) Controller.gamepadaxis(joystick, axis, value) end
function love.gamepadpressed(joystick, key) Controller.gamepadpressed(joystick, key) end
function love.gamepadreleased(joystick, key) Controller.gamepadreleased(joystick, key) end
function love.keypressed(key) Controller.keypressed(key) end