1
0
mirror of https://github.com/ppy/osu synced 2025-03-11 05:49:12 +00:00

Adjust timing of latch to be more in sync with visuals

This commit is contained in:
Dean Herbert 2022-06-21 15:02:53 +09:00
parent 7b46d38318
commit 16a9e18815

View File

@ -280,12 +280,12 @@ namespace osu.Game.Screens.Edit.Timing
return;
}
using (swing.BeginDelayedSequence(350))
using (BeginDelayedSequence(350))
{
swing.RotateTo(0, 1000, Easing.OutQuint);
stick.FadeColour(overlayColourProvider.Colour2, 1000, Easing.OutQuint);
using (swing.BeginDelayedSequence(250))
using (BeginDelayedSequence(380))
latchDelegate = Schedule(() => latch?.Play());
}
}