1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-28 10:30:22 +08:00

Merge branch 'master' into master

This commit is contained in:
Shin Morisawa
2024-10-14 17:48:04 +09:00
committed by GitHub
Unverified
+13 -1
View File
@@ -455,7 +455,19 @@ namespace osu.Game.Screens.Play
MetadataInfo.Loading = true;
content.FadeInFromZero(500, Easing.OutQuint);
content.ScaleTo(1, 650, Easing.OutQuint).Then().Schedule(prepareNewPlayer);
if (quickRestart)
{
prepareNewPlayer();
content.ScaleTo(1, 650, Easing.OutQuint);
}
else
{
content
.ScaleTo(1, 650, Easing.OutQuint)
.Then()
.Schedule(prepareNewPlayer);
}
using (BeginDelayedSequence(delayBeforeSideDisplays))
{