Remove reset key bind

main
Tyler Scott 2022-02-09 23:18:25 +07:00
parent 2ed5c40518
commit 536ec12107
1 changed files with 0 additions and 9 deletions

View File

@ -754,15 +754,6 @@ end
function love.keypressed(key, scan_code, is_repeat)
if key == 'escape' then
love.event.quit()
elseif key == 'r' then
game.next_bubble.x = game.launcher_x
game.next_bubble.y = game.launcher_y
game.next_bubble.velocity_x = 0
game.next_bubble.velocity_y = 0
game.next_bubble.bubble_type = get_next_bubble_type(
game.next_bubble_index, {1,2,3,4,5,6,7,8}
)
game.paused = false
elseif key == 'space' then
game.paused = not game.paused
elseif key == 'n' and game.paused then