mirror of
https://github.com/ppy/osu.git
synced 2025-02-13 12:43:16 +08:00
Formatting
This commit is contained in:
parent
133bcdec7a
commit
bce4b838d8
@ -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; });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user