functional profiler :)

This commit is contained in:
Jill 2022-09-24 12:25:40 +03:00
parent e3453aa49c
commit 89adfc8cb4
2 changed files with 8 additions and 6 deletions

View File

@ -698,7 +698,9 @@
end end
end end
uranium:call('preUpdate', dt)
uranium:call('update', dt) uranium:call('update', dt)
uranium:call('postUpdate', dt)
errored = false errored = false

View File

@ -14,7 +14,7 @@ if PROFILER_ENABLED then
local function draw() local function draw()
if not profilerInfo[profilerShowing] then return end if not profilerInfo[profilerShowing] then return end
quad:diffuse(0.2, 1, 0.2, 0.9) quad:diffuse(0.2, 1, 0.2, 0.8)
quad:align(0, 0) quad:align(0, 0)
text:align(0, 0) text:align(0, 0)
text:shadowlength(0) text:shadowlength(0)
@ -28,13 +28,13 @@ if PROFILER_ENABLED then
quad:Draw() quad:Draw()
text:settext((math.floor(e.t * 100000) / 100) .. 'ms') text:settext((math.floor(e.t * 100000) / 100) .. 'ms')
text:xy(0, i * 24) text:xy(0, i * 24 - 3)
text:zoom(0.3) text:zoom(0.4)
text:diffuse(0.2, 0.2, 0.2, 0.9) text:diffuse(0.2, 0.2, 0.2, 0.9)
text:Draw() text:Draw()
text:settext(e.src) text:settext(e.src)
text:xy(0, i * 24 + 12) text:xy(0, i * 24 + 8)
text:zoom(0.2) text:zoom(0.4)
text:diffuse(0.1, 0.1, 0.1, 0.9) text:diffuse(0.1, 0.1, 0.1, 0.9)
text:Draw() text:Draw()
end end
@ -49,7 +49,7 @@ if PROFILER_ENABLED then
text:Draw() text:Draw()
end end
function uranium.update(dt) function uranium.postUpdate(dt)
max(dt * 12) max(dt * 12)
draw() draw()
end end