sonic-radiance/sonic-radiance.love/scenes/debug/menu/infopanel/gamedata.lua
2021-04-23 10:58:04 +02:00

18 lines
548 B
Lua

local Parent = require "scenes.debug.menu.infopanel.parent"
local GamePanel = Parent:extend()
function GamePanel:new()
GamePanel.super.new(self)
end
function GamePanel:drawContent(x, y)
local debugString = "# DEBUG - Save data" .. "\n"
debugString = debugString .. "Current slot: " .. game.slot .. " / " .. game.slotNumber .. "\n"
debugString = debugString .. "Rings: " .. game.loot.rings .. "\n"
debugString = debugString .. "Gametime: " .. game:getTimeString() .. "\n"
love.graphics.print(debugString, x, y)
end
return GamePanel