diff options
Diffstat (limited to 'not/Decoration.lua')
-rw-r--r-- | not/Decoration.lua | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/not/Decoration.lua b/not/Decoration.lua index 6068a61..97524f5 100644 --- a/not/Decoration.lua +++ b/not/Decoration.lua @@ -21,13 +21,4 @@ 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 |