Change textbox deletion easing to closer match gravity

This commit is contained in:
Dean Herbert
2024-10-03 20:43:20 +09:00
parent e4cbe949e8
commit d8e6beada6

View File

@@ -119,7 +119,7 @@ namespace osu.Framework.Graphics.UserInterface
public override void Hide()
{
this.FadeOut(200);
this.MoveToY(DrawSize.Y, 200, Easing.InExpo);
this.MoveToY(DrawSize.Y, 200, Easing.InQuad);
}
}