1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 10:22:56 +08:00

Remove elasticity from dialog appearing

This commit is contained in:
Dean Herbert 2020-09-08 12:47:21 +09:00
parent 8b770626fa
commit ab58f60529

View File

@ -111,7 +111,7 @@ namespace osu.Game.Collections
base.PopIn();
this.FadeIn(enter_duration, Easing.OutQuint);
this.ScaleTo(0.9f).Then().ScaleTo(1f, enter_duration, Easing.OutElastic);
this.ScaleTo(0.9f).Then().ScaleTo(1f, enter_duration, Easing.OutQuint);
}
protected override void PopOut()