+ bg to challengewheel

This commit is contained in:
FajsiEx 2021-07-31 23:25:09 +02:00
parent b788ffe233
commit 2d098d9b74
2 changed files with 10 additions and 3 deletions

View File

@ -22,6 +22,9 @@ local scrollmulOffset = 0 -- bc we have min/max the game doesn't know we have to
local effector = 0
local searchText = gfx.CreateLabel("",5,0)
local searchIndex = 1
local backgroundImage = gfx.CreateSkinImage("challenge_select/bg.png", 0)
local jacketFallback = gfx.CreateSkinImage("song_select/loading.png", 0)
local showGuide = game.GetSkinSetting("show_guide")
local legendTable = {
@ -614,9 +617,13 @@ draw_search = function(x,y,w,h)
end
render = function(deltaTime)
timer = (timer + deltaTime)
timer = timer % 2
resx,resy = game.GetResolution();
gfx.BeginPath()
gfx.ImageRect(0, 0, resx, resy, backgroundImage, 1, 0)
adjustScreen(resx,resy);
gfx.BeginPath();
gfx.LoadSkinFont("NotoSans-Regular.ttf");

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB