1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 06:42:54 +08:00

Adjust transforms of EditorScreen

This commit is contained in:
smoogipoo 2017-10-02 10:09:10 +09:00
parent 91cede79c2
commit af4c6276e4

View File

@ -30,12 +30,12 @@ namespace osu.Game.Screens.Edit.Screens
this.ScaleTo(0.5f).FadeTo(0)
.Then()
.ScaleTo(1f, 500, Easing.OutQuint).FadeTo(1f, 500, Easing.OutQuint);
.ScaleTo(1f, 500, Easing.OutQuint).FadeTo(1f, 250, Easing.OutQuint);
}
public void Exit()
{
this.ScaleTo(1.5f, 500).FadeOut(500f).Expire();
this.ScaleTo(1.5f, 500).FadeOut(250).Expire();
}
}
}