Merge pull request #30261 from peppy/faster-quick-retry

Decrease the time it takes to quick retry by ~650 ms
This commit is contained in:
Bartłomiej Dach 2024-10-14 10:24:35 +02:00 committed by GitHub
commit 120eb9adea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 13 additions and 1 deletions

View File

@ -455,7 +455,19 @@ private void contentIn(double delayBeforeSideDisplays = 0)
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))
{