summaryrefslogtreecommitdiffhomepage
path: root/not/Layer.lua
diff options
context:
space:
mode:
Diffstat (limited to 'not/Layer.lua')
-rw-r--r--not/Layer.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/not/Layer.lua b/not/Layer.lua
index 6be61c4..0446599 100644
--- a/not/Layer.lua
+++ b/not/Layer.lua
@@ -38,8 +38,12 @@ function Layer:clear ()
end
function Layer:draw ()
+ local scale = 1
+ if self.scale then
+ scale = getScale() / self.scale
+ end
love.graphics.setColor(255, 255, 255, 255)
- love.graphics.draw(self.canvas)
+ love.graphics.draw(self.canvas, 0, 0, 0, scale, scale)
end
return Layer