mirror of
https://github.com/osukey/osukey.git
synced 2025-05-31 10:27:26 +09:00
Fix samples being played too early
This commit is contained in:
parent
0933d44ceb
commit
b289beca53
@ -39,6 +39,13 @@ namespace osu.Game.Screens.Menu
|
|||||||
|
|
||||||
if (!resuming)
|
if (!resuming)
|
||||||
{
|
{
|
||||||
|
LoadComponentAsync(new WelcomeIntroSequence
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.Both
|
||||||
|
}, intro =>
|
||||||
|
{
|
||||||
|
AddInternal(intro);
|
||||||
|
|
||||||
welcome?.Play();
|
welcome?.Play();
|
||||||
pianoReverb?.Play();
|
pianoReverb?.Play();
|
||||||
|
|
||||||
@ -52,11 +59,7 @@ namespace osu.Game.Screens.Menu
|
|||||||
|
|
||||||
Scheduler.Add(LoadMenu);
|
Scheduler.Add(LoadMenu);
|
||||||
}, delay_step_two);
|
}, delay_step_two);
|
||||||
|
});
|
||||||
LoadComponentAsync(new WelcomeIntroSequence
|
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.Both
|
|
||||||
}, AddInternal);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user