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.

преди 4 години
123456789101112131415161718192021222324
  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