From 0993f1e8bb664f511b23d20520140391717199ac Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sat, 6 Jul 2019 18:02:53 +0200 Subject: [PATCH] fix(boxes): remove some test print. --- gamecore/modules/world/actors/utils/boxes/parent.lua | 2 -- 1 file changed, 2 deletions(-) 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