* songwheel header size and position to match EG

This commit is contained in:
FajsiEx 2021-08-11 18:43:53 +02:00
parent 3d9776d6fb
commit c0261844ea
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ require('common')
local Easing = require('common.easings');
local Footer = require('components.footer');
local HEADER_HEIGHT = 128;
local HEADER_HEIGHT = 100;
local BAR_ALPHA = 191;
local backgroundImage = gfx.CreateSkinImage("song_select/bg.png", 1)
@ -437,8 +437,8 @@ function drawHeader()
gfx.Fill();
gfx.ClosePath()
gfx.ImageRect(28, 28, 423*0.85, 80*0.85, headerTitleImage, 1, 0)
gfx.ImageRect(28, 28, 423*0.85, 80*0.85, headerGlowTitleImage, animationHeaderGlowAlpha, 0)
gfx.ImageRect(42, 14, 423*0.85, 80*0.85, headerTitleImage, 1, 0)
gfx.ImageRect(42, 14, 423*0.85, 80*0.85, headerGlowTitleImage, animationHeaderGlowAlpha, 0)
gfx.Restore()
end