Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

24 righe
436 B

  1. edible = Class{}
  2. function edible:init( y , x , fat )
  3. self.RED = 255
  4. self.GREEN = 255
  5. self.BLUE = 255
  6. self.x = x
  7. self.y = y
  8. self.width = fat
  9. self.height = fat
  10. self.fat = fat
  11. self.dead = false
  12. end
  13. function edible:update(dt)
  14. end
  15. function edible:render()
  16. love.graphics.setColor(self.fat*20/200, 0, 0, 1)
  17. love.graphics.circle('line', self.x, self.y, self.fat)
  18. love.graphics.setColor(255, 255, 255, 255)
  19. end