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.

16 lines
343 B

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