1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 22:22:54 +08:00

Improve feel of transition

This commit is contained in:
Bartłomiej Dach 2020-10-20 00:51:31 +02:00
parent 1238e6c30f
commit a164d330e5

View File

@ -89,12 +89,12 @@ namespace osu.Game.Screens.Play
protected override void PopIn()
{
this.FadeIn(500, Easing.InQuint)
.TransformBindableTo(trackVolumeOnEpilepsyWarning, 0.25, 500, Easing.InQuint);
.TransformBindableTo(trackVolumeOnEpilepsyWarning, 0.25, 500, Easing.InSine);
warningContent.FadeIn(500, Easing.InQuint);
}
protected override void PopOut() => this.FadeOut(500, Easing.InQuint);
protected override void PopOut() => this.FadeOut(500, Easing.OutQuint);
protected override void Dispose(bool isDisposing)
{