+ version text to footer

This commit is contained in:
FajsiEx 2021-08-13 22:59:35 +02:00
parent 3986d0d126
commit f474da8ca3
2 changed files with 8 additions and 1 deletions

View File

@ -47,6 +47,13 @@ local drawFooter = function ()
gfx.BeginPath(); gfx.BeginPath();
gfx.ImageRect(desw-275, footerY-25, 328*0.85, 188*0.85, footerRightImage, 1, 0); gfx.ImageRect(desw-275, footerY-25, 328*0.85, 188*0.85, footerRightImage, 1, 0);
gfx.BeginPath();
gfx.LoadSkinFont("Digital-Serial-Bold.ttf");
gfx.FontSize(20)
gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_TOP)
gfx.FillColor(255, 255, 255, 255);
gfx.Text('EXPERIMENTALGEAR 0.1.0 - CLOSED BETA. DO. NOT. LEAK.', 8, 1895);
end end
local progressTransitions = function () local progressTransitions = function ()

View File

@ -309,7 +309,7 @@ render = function(deltatime, shown)
gfx.FillColor(255, 255, 255, 255); gfx.FillColor(255, 255, 255, 255);
gfx.Text('S_M: ' .. selectionMode .. ' // S_F: ' .. selectedFolder .. gfx.Text('S_M: ' .. selectionMode .. ' // S_F: ' .. selectedFolder ..
' // S_L: ' .. selectedLevel .. ' // T_E_S: ' .. ' // S_L: ' .. selectedLevel .. ' // T_E_S: ' ..
transitionEnterScale, 8, 1900); transitionEnterScale, 8, 1870);
end end
set_selection = function(newIndex, isFolder) set_selection = function(newIndex, isFolder)