fixed the additive layer on the pixel shadow for translations

This commit is contained in:
Tim Anema 2014-11-06 20:03:00 -05:00
parent 820033810b
commit 1c5eb2c804

View File

@ -188,7 +188,7 @@ function light_world:drawPixelShadow(l,t,w,h,s)
util.drawto(self.pixelShadow, l, t, s, function()
love.graphics.setBlendMode("additive")
love.graphics.setColor({self.ambient[1], self.ambient[2], self.ambient[3]})
love.graphics.rectangle("fill", l/s,t/s,w/s,h/s)
love.graphics.rectangle("fill", -l/s, -t/s, w/s,h/s)
end)
util.drawCanvasToCanvas(self.pixelShadow, self.render_buffer, {blendmode = "multiplicative"})