VoxelEngine/res/layouts/process.xml.lua
2024-04-23 04:51:00 +03:00

11 lines
257 B
Lua

function on_progress(done, total)
local progress = done / total
document.progress_label.text = string.format(
"%s/%s (%s%%)", done, total, math.floor(progress*100)
)
end
function on_open(title)
document.title_label.text = title
end