您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

21 行
378 B

  1. button = Class{}
  2. function button:init(x, y, width, height, color)
  3. self.x = x
  4. self.y = y
  5. self.w = width
  6. self.h = height
  7. self.color = color
  8. end
  9. function button:update(dt)
  10. end
  11. function button:render()
  12. love.graphics.setColor(unpack(color))
  13. love.graphics.rectangle("fill", self.x,self.y, self.w, self.h)
  14. love.graphics.setColor(0, 0, 0, 255)
  15. end