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

Move colour fade back to where it was

This commit is contained in:
Dean Herbert 2022-06-21 15:02:43 +09:00
parent 3b79c632f5
commit 7b46d38318

View File

@ -266,7 +266,6 @@ namespace osu.Game.Screens.Edit.Timing
if (BeatSyncSource.Clock?.IsRunning != true && isSwinging)
{
swing.ClearTransforms(true);
stick.FadeColour(overlayColourProvider.Colour2, 1000, Easing.OutQuint);
isSwinging = false;
@ -284,6 +283,7 @@ namespace osu.Game.Screens.Edit.Timing
using (swing.BeginDelayedSequence(350))
{
swing.RotateTo(0, 1000, Easing.OutQuint);
stick.FadeColour(overlayColourProvider.Colour2, 1000, Easing.OutQuint);
using (swing.BeginDelayedSequence(250))
latchDelegate = Schedule(() => latch?.Play());