1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 14:52:57 +08:00

Decrease speed of progress notifications

This commit is contained in:
Dean Herbert 2017-12-27 20:26:14 +09:00
parent 7d0c94fd01
commit 3428cf6501

View File

@ -69,7 +69,7 @@ namespace osu.Game.Tests.Visual
AddAssert("Displayed count is 33", () => manager.UnreadCount.Value == 33); AddAssert("Displayed count is 33", () => manager.UnreadCount.Value == 33);
AddWaitStep(5); AddWaitStep(10);
checkProgressingCount(0); checkProgressingCount(0);
@ -117,7 +117,7 @@ namespace osu.Game.Tests.Visual
foreach (var n in progressingNotifications.FindAll(n => n.State == ProgressNotificationState.Active)) foreach (var n in progressingNotifications.FindAll(n => n.State == ProgressNotificationState.Active))
{ {
if (n.Progress < 1) if (n.Progress < 1)
n.Progress += (float)(Time.Elapsed / 200) * RNG.NextSingle(); n.Progress += (float)(Time.Elapsed / 400) * RNG.NextSingle();
else else
n.State = ProgressNotificationState.Completed; n.State = ProgressNotificationState.Completed;
} }