Skip to content

Commit

Permalink
Fix scene loopback
Browse files Browse the repository at this point in the history
Signed-off-by: Luiz Carlos Cavalcanti <cavalcanti.luiz@gmail.com>
luizcavalcanti authored and rogerzanoni committed Oct 21, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 0e77b40 commit 7d35ebb
Showing 2 changed files with 54 additions and 0 deletions.
27 changes: 27 additions & 0 deletions introscene.lua
Original file line number Diff line number Diff line change
@@ -59,4 +59,31 @@ function IntroScene:nextSlide()
end
end

function IntroScene:keyPressed(key, scancode, isRepeat)
end

function IntroScene:keyReleased(key, scancode, isRepeat)
end

function IntroScene:mousepressed(x, y, button, istouch, presses)
end

function IntroScene:mousereleased(x, y, button, istouch, presses)
end

function IntroScene:mousemoved(x, y, dx, dy, istouch)
end

function IntroScene:wheelmoved(dx, dy)
end

function IntroScene:gamepadpressed(joystick, button)
end

function IntroScene:gamepadreleased(joystick, button)
end

function IntroScene:gamepadaxis(joystick, axis, value)
end

return IntroScene
27 changes: 27 additions & 0 deletions prologuescene.lua
Original file line number Diff line number Diff line change
@@ -78,4 +78,31 @@ function PrologueScene:endScene()
sceneManager:setCurrent('game')
end

function PrologueScene:keyPressed(key, scancode, isRepeat)
end

function PrologueScene:keyReleased(key, scancode, isRepeat)
end

function PrologueScene:mousepressed(x, y, button, istouch, presses)
end

function PrologueScene:mousereleased(x, y, button, istouch, presses)
end

function PrologueScene:mousemoved(x, y, dx, dy, istouch)
end

function PrologueScene:wheelmoved(dx, dy)
end

function PrologueScene:gamepadpressed(joystick, button)
end

function PrologueScene:gamepadreleased(joystick, button)
end

function PrologueScene:gamepadaxis(joystick, axis, value)
end

return PrologueScene

0 comments on commit 7d35ebb

Please sign in to comment.