diff --git a/osu.Game/Graphics/UserInterface/StarCounter.cs b/osu.Game/Graphics/UserInterface/StarCounter.cs index 523527dcce..67f2a2ae0c 100644 --- a/osu.Game/Graphics/UserInterface/StarCounter.cs +++ b/osu.Game/Graphics/UserInterface/StarCounter.cs @@ -27,6 +27,7 @@ namespace osu.Game.Graphics.UserInterface protected List stars = new List(); public ulong StarAnimationDuration = 500; + public EasingTypes StarAnimationEasing = EasingTypes.OutElasticHalf; public ulong FadeDuration = 100; public float MinStarSize = 0.3f; public float MinStarAlpha = 0.5f; @@ -116,7 +117,7 @@ namespace osu.Game.Graphics.UserInterface i + 1 ) ); - transform.Easing = EasingTypes.OutElasticHalf; + transform.Easing = StarAnimationEasing; stars[i].Transforms.Add(transform); }