Skip to content

Commit

Permalink
Merge pull request #6381 from peppy/textbox-easing
Browse files Browse the repository at this point in the history
Change textbox deletion animation easing to closer match gravity
  • Loading branch information
bdach authored Oct 4, 2024
2 parents e4cbe94 + d8e6bea commit 19b54b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Framework/Graphics/UserInterface/BasicTextBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public override void Show()
public override void Hide()
{
this.FadeOut(200);
this.MoveToY(DrawSize.Y, 200, Easing.InExpo);
this.MoveToY(DrawSize.Y, 200, Easing.InQuad);
}
}

Expand Down

0 comments on commit 19b54b7

Please sign in to comment.