From b9fd1f52dfe392fd0f4fbf0ce535a0790d2849cc Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 15 Oct 2021 19:37:22 +0900 Subject: [PATCH] Tweak animation slightly --- osu.Game/Screens/Play/FailAnimation.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/osu.Game/Screens/Play/FailAnimation.cs b/osu.Game/Screens/Play/FailAnimation.cs index d4fc289991..1e2e020824 100644 --- a/osu.Game/Screens/Play/FailAnimation.cs +++ b/osu.Game/Screens/Play/FailAnimation.cs @@ -117,8 +117,9 @@ public void Start() Depth = float.MaxValue }); - Content.ScaleTo(0.85f, duration, Easing.OutQuint); - Content.RotateTo(1, duration, Easing.OutQuint); + Content.ScaleTo(0.85f, duration, Easing.OutQuart); + Content.RotateTo(1, duration, Easing.OutQuart); + Content.FadeColour(Color4.Gray, duration); } protected override void Update()