summaryrefslogtreecommitdiffhomepage
path: root/decoration.lua
diff options
context:
space:
mode:
Diffstat (limited to 'decoration.lua')
-rw-r--r--decoration.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/decoration.lua b/decoration.lua
index 3ca6f76..ffb007d 100644
--- a/decoration.lua
+++ b/decoration.lua
@@ -5,11 +5,11 @@ Decoration = {
y = 0
}
Decoration.__index = Decoration
-setmetatable(Decoration, Animated)
+setmetatable(Decoration, Sprite)
function Decoration:new(x, y, sprite)
local o = {}
setmetatable(o, self)
- o.sprite = love.graphics.newImage(sprite)
+ o:setImage(love.graphics.newImage(sprite))
o:setPosition(x,y)
return o
end
@@ -29,5 +29,5 @@ function Decoration:draw(offset_x, offset_y, scale)
local draw_x = (math.floor(x) + offset_x) * scale
local draw_y = (math.floor(y) + offset_y) * scale
-- draw
- Animated.draw(self, draw_x, draw_y, 0, scale, scale)
+ Sprite.draw(self, draw_x, draw_y, 0, scale, scale)
end \ No newline at end of file