UI HUGE UPDATE

This commit is contained in:
2026-06-25 11:48:56 +08:00
parent bd2a06f4c7
commit b2a1e307a4
1806 changed files with 359863 additions and 20822 deletions
@@ -1651,9 +1651,10 @@ public class GameManager : MonoBehaviour
{
if (sd == null) return;
// set background sprite if present
if (backgroundRenderer != null && sd.fullscreen_songPicture != null)
Sprite resolvedBackground = sd.GetResolvedFullscreenSongPicture();
if (backgroundRenderer != null && resolvedBackground != null)
{
backgroundRenderer.sprite = sd.fullscreen_songPicture;
backgroundRenderer.sprite = resolvedBackground;
Color color = backgroundRenderer.color;
color.a = 1f;
backgroundRenderer.color = color;