mirror of
https://github.com/ppy/osu.git
synced 2024-12-21 00:32:54 +08:00
Merge branch 'fix-song-select-looping' into editor-song-end
This commit is contained in:
commit
a9488a92a9
@ -85,8 +85,6 @@ namespace osu.Game.Screens.Select
|
||||
}
|
||||
}
|
||||
|
||||
Beatmap.Value.Track.Looping = false;
|
||||
|
||||
SampleConfirm?.Play();
|
||||
|
||||
this.Push(player = new PlayerLoader(() => new Player()));
|
||||
|
@ -572,6 +572,9 @@ namespace osu.Game.Screens.Select
|
||||
|
||||
BeatmapOptions.Hide();
|
||||
|
||||
if (Beatmap.Value.Track != null)
|
||||
Beatmap.Value.Track.Looping = false;
|
||||
|
||||
this.ScaleTo(1.1f, 250, Easing.InSine);
|
||||
|
||||
this.FadeOut(250);
|
||||
|
Loading…
Reference in New Issue
Block a user