mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
introduce main menu background modes
This commit is contained in:
@ -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>()
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user