Adjust transitions a tad

This commit is contained in:
Dean Herbert
2019-06-25 20:23:34 +09:00
parent aa81c95f30
commit f51be4c4fe
2 changed files with 8 additions and 10 deletions

View File

@ -58,8 +58,8 @@ namespace osu.Game.Graphics.UserInterface
protected override void PopOut()
{
button.MoveToX(-TwoLayerButton.SIZE_EXTENDED.X / 2, 400);
button.FadeOut(200);
button.MoveToX(-TwoLayerButton.SIZE_EXTENDED.X / 2, 400, Easing.OutQuint);
button.FadeOut(400, Easing.OutQuint);
}
}
}