add new background type in BackgroundScreenDefault

This commit is contained in:
Nathan Alo 2021-06-02 15:51:43 +08:00
parent dec18ef826
commit dde64adcb5

View File

@ -110,6 +110,10 @@ namespace osu.Game.Screens.Backgrounds
newBackground = new BeatmapBackground(beatmap.Value, backgroundName);
break;
case BackgroundSource.BeatmapWithStoryboard:
newBackground = new BeatmapBackgroundWithStoryboard(beatmap.Value, backgroundName);
break;
default:
newBackground = new SkinnedBackground(skin.Value, backgroundName);
break;