summaryrefslogtreecommitdiffhomepage
path: root/not/Decoration.lua
diff options
context:
space:
mode:
Diffstat (limited to 'not/Decoration.lua')
-rw-r--r--not/Decoration.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/not/Decoration.lua b/not/Decoration.lua
index 97524f5..6068a61 100644
--- a/not/Decoration.lua
+++ b/not/Decoration.lua
@@ -21,4 +21,13 @@ function Decoration:setPosition (x, y)
self.x, self.y = x, y
end
+-- TODO: Temporary wrapper for draw to keep background in place.
+function Decoration:draw (offset_x, offset_y, scale)
+ if self.ratio ~= nil then
+ offset_x = offset_x * self.ratio
+ offset_y = offset_y * self.ratio
+ end
+ Decoration.__super.draw(self, offset_x, offset_y, scale)
+end
+
return Decoration