diff options
-rw-r--r-- | main.lua | 12 | ||||
-rw-r--r-- | not/World.lua | 3 |
2 files changed, 12 insertions, 3 deletions
@@ -47,12 +47,18 @@ function love.draw () love.graphics.setFont(Font) love.graphics.setColor(255, 0, 0, 255) love.graphics.print("Debug ON", 10, 10, 0, scale, scale) - love.graphics.setColor(255, 255, 255, 255) - love.graphics.print("Current FPS: "..tostring(love.timer.getFPS()), 10, 10+9*scale, 0, scale, scale) + if dbg_msg then + love.graphics.setColor(255, 255, 255, 255) + love.graphics.print(dbg_msg, 10, 10+9*scale, 0, scale, scale) + end end end -function love.update (dt) sceneManager:update(dt) end +function love.update (dt) + dbg_msg = string.format("FPS: %d\n", love.timer.getFPS()) + sceneManager:update(dt) +end + function love.quit () Settings.save() end -- Pass input to Controller diff --git a/not/World.lua b/not/World.lua index 62988ae..ebc7d9f 100644 --- a/not/World.lua +++ b/not/World.lua @@ -205,6 +205,9 @@ function World:update (dt) table.remove(self.Rays, key) end end + + -- Some additional debug info. + dbg_msg = string.format("%sMap: %s\nClouds: %d\n", dbg_msg, self.map.filepath, self:getCloudsCount()) end -- Draw |