Merge pull request #23371 from peppy/argon-slider-ball-fade-faster

Increase the rate of slider ball fade on argon skins to match other implementations
This commit is contained in:
Bartłomiej Dach 2023-05-02 19:03:47 +02:00 committed by GitHub
commit 03459a4f19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,7 +98,8 @@ namespace osu.Game.Rulesets.Osu.Skinning.Argon
using (BeginAbsoluteSequence(drawableObject.HitStateUpdateTime))
{
this.FadeOut(duration, Easing.OutQuint);
// intentionally pile on an extra FadeOut to make it happen much faster
this.FadeOut(duration / 4, Easing.OutQuint);
icon.ScaleTo(defaultIconScale * icon_scale, duration, Easing.OutQuint);
}
}