1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00

Match the stable animation

This commit is contained in:
normalid 2024-07-24 12:30:08 +08:00
parent 95f287104e
commit 395f8424b5
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ namespace osu.Game.Skinning
protected override void Activate(bool forwardPlayback = true)
{
base.Activate(forwardPlayback);
keyContainer.ScaleTo(0.8f, TransitionDuration);
keyContainer.ScaleTo(0.75f, TransitionDuration, Easing.OutQuad);
overlayKeyText.Text = CountPresses.Value.ToString();
}

View File

@ -13,7 +13,7 @@ namespace osu.Game.Skinning
{
public partial class LegacyKeyCounterDisplay : KeyCounterDisplay
{
private const float key_transition_time = 50;
private const float key_transition_time = 100;
protected override FillFlowContainer<KeyCounter> KeyFlow { get; } = null!;