1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Remove scale effect on editor screen switches

This commit is contained in:
Dean Herbert 2017-10-06 23:41:49 +08:00
parent 3557737a18
commit 19c663da11

View File

@ -28,14 +28,14 @@ namespace osu.Game.Screens.Edit.Screens
{
base.LoadComplete();
this.ScaleTo(0.75f).FadeTo(0)
this.FadeTo(0)
.Then()
.ScaleTo(1f, 500, Easing.OutQuint).FadeTo(1f, 250, Easing.OutQuint);
.FadeTo(1f, 250, Easing.OutQuint);
}
public void Exit()
{
this.ScaleTo(1.25f, 500).FadeOut(250).Expire();
this.FadeOut(250).Expire();
}
}
}