1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 12:43:16 +08:00

Formatting

This commit is contained in:
Dean Herbert 2017-07-14 14:40:50 +09:00
parent 133bcdec7a
commit bce4b838d8

View File

@ -217,23 +217,14 @@ namespace osu.Game.Overlays
backgroundStrip.FadeIn(step_duration);
leftStrip.ResizeWidthTo(1f, step_duration, EasingTypes.OutQuint);
rightStrip.ResizeWidthTo(1f, step_duration, EasingTypes.OutQuint);
Schedule(() =>
{
if (drawableMedal.State != DisplayState.Full) drawableMedal.State = DisplayState.Icon;
});
Schedule(() => { if (drawableMedal.State != DisplayState.Full) drawableMedal.State = DisplayState.Icon; });
using (BeginDelayedSequence(step_duration, true))
{
Schedule(() =>
{
if (drawableMedal.State != DisplayState.Full) drawableMedal.State = DisplayState.MedalUnlocked;
});
Schedule(() => { if (drawableMedal.State != DisplayState.Full) drawableMedal.State = DisplayState.MedalUnlocked; });
using (BeginDelayedSequence(step_duration, true))
Schedule(() =>
{
if (drawableMedal.State != DisplayState.Full) drawableMedal.State = DisplayState.Full;
});
Schedule(() => { if (drawableMedal.State != DisplayState.Full) drawableMedal.State = DisplayState.Full; });
}
}
}