We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb88716 commit b2309a9Copy full SHA for b2309a9
osu.Game/Screens/Play/BeatmapMetadataDisplay.cs
@@ -62,11 +62,16 @@ public bool UserBlocked
62
63
if (userBlocked)
64
{
65
- blockingLoadLayer
66
- .FadeIn(300, Easing.Out)
67
- .Then()
68
- .FadeTo(0.5f, 1000, Easing.In)
69
- .Loop();
+ using (BeginDelayedSequence(500))
+ {
+ blockingLoadLayer
+ // Slight delay to avoid this flashing briefly during multiplayer load and other scenarios where
+ // load may be blocked for a short period.
70
+ .FadeIn(300, Easing.Out)
71
+ .Then()
72
+ .FadeTo(0.6f, 1000, Easing.In)
73
+ .Loop();
74
+ }
75
}
76
else
77
blockingLoadLayer.FadeOut(500, Easing.OutQuint);
0 commit comments