1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-04 00:42:55 +08:00

Fix samples being played too early

This commit is contained in:
Dean Herbert 2020-06-23 13:33:33 +09:00
parent 0933d44ceb
commit b289beca53

View File

@ -39,6 +39,13 @@ namespace osu.Game.Screens.Menu
if (!resuming)
{
LoadComponentAsync(new WelcomeIntroSequence
{
RelativeSizeAxes = Axes.Both
}, intro =>
{
AddInternal(intro);
welcome?.Play();
pianoReverb?.Play();
@ -52,11 +59,7 @@ namespace osu.Game.Screens.Menu
Scheduler.Add(LoadMenu);
}, delay_step_two);
LoadComponentAsync(new WelcomeIntroSequence
{
RelativeSizeAxes = Axes.Both
}, AddInternal);
});
}
}