You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
389 B

  1. function buttonClutter()
  2. table.insert(buttons, menu:addButton("Practice",
  3. function()
  4. menuLoaded = false
  5. objReset()
  6. gameState = "practice"
  7. end))
  8. table.insert(buttons, menu:addButton("Levels",
  9. function()
  10. gameState = "selectlv"
  11. end
  12. ))
  13. end
  14. local t=0
  15. function explode(x, y)
  16. t = t+10
  17. love.graphics.circle("fill", x, y, t)
  18. end