ensure logo is where it already needs to be on resume

This commit is contained in:
David Zhao 2019-03-28 16:09:42 +09:00
parent bfe44eb33d
commit 039e451ab1
1 changed files with 5 additions and 1 deletions

View File

@ -152,8 +152,12 @@ protected override void LogoArriving(OsuLogo logo, bool resuming)
const double duration = 300;
if (!resuming)
{
logo.MoveTo(new Vector2(0.5f), duration, Easing.In);
}
logo.ScaleTo(new Vector2(0.15f), duration, Easing.In);
logo.MoveTo(new Vector2(0.5f), duration, Easing.In);
logo.FadeIn(350);
content.SetLogo(logo, 1.0f, 500, Easing.InOutExpo);