diff --git a/gamecore/modules/world/actors/utils/boxes/parent.lua b/gamecore/modules/world/actors/utils/boxes/parent.lua index 5459e48..d8538c6 100644 --- a/gamecore/modules/world/actors/utils/boxes/parent.lua +++ b/gamecore/modules/world/actors/utils/boxes/parent.lua @@ -123,7 +123,6 @@ end function Box3D:redrawShadowCanvas() if (self.needRedraw) then - print("DEBUG: Generating " .. #self.shadowSources .. " shadows") local canvas = love.graphics.newCanvas(self.w, self.h) love.graphics.setCanvas( canvas ) for i,v in ipairs(self.shadowSources) do @@ -150,7 +149,6 @@ function Box3D:draw(x, y, z) love.graphics.draw(self.texture.top, x, (y-z) - (self.d)) love.graphics.draw(self.texture.bottom, x, (y-z) - (self.d) + (self.h)) if (self.texture.shadows ~= nil) and (#self.shadowSources > 0) then - print("DEBUG: Drawing " .. #self.shadowSources .. " shadow textures") love.graphics.draw(self.texture.shadows, x, (y-z) - (self.d)) end end