1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-20 19:13:02 +08:00

Merge branch 'fix-song-select-looping' into editor-song-end

This commit is contained in:
Dean Herbert 2020-03-25 15:54:21 +09:00
commit a9488a92a9
2 changed files with 3 additions and 2 deletions

View File

@ -85,8 +85,6 @@ namespace osu.Game.Screens.Select
}
}
Beatmap.Value.Track.Looping = false;
SampleConfirm?.Play();
this.Push(player = new PlayerLoader(() => new Player()));

View File

@ -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);