introduce main menu background modes

This commit is contained in:
LeNitrous
2019-09-24 17:42:06 +08:00
parent 9fe7675be8
commit b8d147a3b4
6 changed files with 80 additions and 21 deletions

View File

@ -34,6 +34,12 @@ namespace osu.Game.Overlays.Settings.Sections.Audio
Bindable = config.GetBindable<IntroSequence>(OsuSetting.IntroSequence),
Items = Enum.GetValues(typeof(IntroSequence)).Cast<IntroSequence>()
},
new SettingsDropdown<BackgroundMode>
{
LabelText = "Background",
Bindable = config.GetBindable<BackgroundMode>(OsuSetting.BackgroundMode),
Items = Enum.GetValues(typeof(BackgroundMode)).Cast<BackgroundMode>()
}
};
}
}