mirror of
https://github.com/osukey/osukey.git
synced 2025-05-04 21:27:22 +09:00
Formatting
This commit is contained in:
parent
133bcdec7a
commit
bce4b838d8
@ -217,23 +217,14 @@ namespace osu.Game.Overlays
|
|||||||
backgroundStrip.FadeIn(step_duration);
|
backgroundStrip.FadeIn(step_duration);
|
||||||
leftStrip.ResizeWidthTo(1f, step_duration, EasingTypes.OutQuint);
|
leftStrip.ResizeWidthTo(1f, step_duration, EasingTypes.OutQuint);
|
||||||
rightStrip.ResizeWidthTo(1f, step_duration, EasingTypes.OutQuint);
|
rightStrip.ResizeWidthTo(1f, step_duration, EasingTypes.OutQuint);
|
||||||
Schedule(() =>
|
Schedule(() => { if (drawableMedal.State != DisplayState.Full) drawableMedal.State = DisplayState.Icon; });
|
||||||
{
|
|
||||||
if (drawableMedal.State != DisplayState.Full) drawableMedal.State = DisplayState.Icon;
|
|
||||||
});
|
|
||||||
|
|
||||||
using (BeginDelayedSequence(step_duration, true))
|
using (BeginDelayedSequence(step_duration, true))
|
||||||
{
|
{
|
||||||
Schedule(() =>
|
Schedule(() => { if (drawableMedal.State != DisplayState.Full) drawableMedal.State = DisplayState.MedalUnlocked; });
|
||||||
{
|
|
||||||
if (drawableMedal.State != DisplayState.Full) drawableMedal.State = DisplayState.MedalUnlocked;
|
|
||||||
});
|
|
||||||
|
|
||||||
using (BeginDelayedSequence(step_duration, true))
|
using (BeginDelayedSequence(step_duration, true))
|
||||||
Schedule(() =>
|
Schedule(() => { if (drawableMedal.State != DisplayState.Full) drawableMedal.State = DisplayState.Full; });
|
||||||
{
|
|
||||||
if (drawableMedal.State != DisplayState.Full) drawableMedal.State = DisplayState.Full;
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user