1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 15:00:46 +08:00

Fix logo transitions with song select v2

This commit is contained in:
Dean Herbert
2025-05-27 01:13:12 +09:00
Unverified
parent 4335b51edc
commit 68d557b4ad
+4 -2
View File
@@ -455,7 +455,7 @@ namespace osu.Game.Screens.SelectV2
{
base.LogoArriving(logo, resuming);
if (logo.Alpha > 0.8f)
if (logo.Alpha > 0.8f && resuming)
Footer?.StartTrackingLogo(logo, 400, Easing.OutQuint);
else
{
@@ -484,7 +484,9 @@ namespace osu.Game.Screens.SelectV2
protected override void LogoExiting(OsuLogo logo)
{
base.LogoExiting(logo);
Scheduler.AddDelayed(() => Footer?.StopTrackingLogo(), 120);
Footer?.StopTrackingLogo();
logo.ScaleTo(0.2f, 120, Easing.Out);
logo.FadeOut(120, Easing.Out);
}