You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The example does not work with keypad arrows and Enter in Linux. Could you add support for them? This requires changing 3 conditions in main.lua:
In function love.update replace love.keyboard.isDown('up') with love.keyboard.isDown('up') or love.keyboard.isDown('kp8') love.keyboard.isDown('down') with love.keyboard.isDown('down') or love.keyboard.isDown('kp2')
In function love.keypressed replace key == 'enter' or key == 'return' with key == 'enter' or key == 'return' or key == 'kpenter'
The text was updated successfully, but these errors were encountered:
The example does not work with keypad arrows and Enter in Linux. Could you add support for them? This requires changing 3 conditions in main.lua:
In function love.update replace
love.keyboard.isDown('up')
withlove.keyboard.isDown('up') or love.keyboard.isDown('kp8')
love.keyboard.isDown('down')
withlove.keyboard.isDown('down') or love.keyboard.isDown('kp2')
In function love.keypressed replace
key == 'enter' or key == 'return'
withkey == 'enter' or key == 'return' or key == 'kpenter'
The text was updated successfully, but these errors were encountered: