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

Merge pull request #18808 from nekodex/fix-metronome-flash

Fix metronome arm being stuck white when paused 'close enough' to center
This commit is contained in:
Dean Herbert 2022-06-22 16:15:59 +09:00 committed by GitHub
commit 77023d8179
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -276,6 +276,7 @@ namespace osu.Game.Screens.Edit.Timing
if (Precision.AlmostEquals(swing.Rotation, 0, 1))
{
swing.RotateTo(0, 60, Easing.OutQuint);
stick.FadeColour(overlayColourProvider.Colour2, 1000, Easing.OutQuint);
sampleLatch?.Play();
return;
}