2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
2019-08-09 19:05:28 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
|
2020-11-30 05:00:15 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.UserInterface
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public class MainMenuSettings : SettingsSubsection
|
|
|
|
|
{
|
|
|
|
|
protected override string Header => "Main Menu";
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
2019-08-09 19:05:28 +08:00
|
|
|
|
Children = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Interface voices",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.MenuVoice)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
|
|
|
|
LabelText = "osu! music theme",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.MenuMusic)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
2020-12-20 08:57:25 +08:00
|
|
|
|
new SettingsEnumDropdown<IntroSequence>
|
2019-08-09 19:05:28 +08:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Intro sequence",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<IntroSequence>(OsuSetting.IntroSequence),
|
2019-08-09 19:05:28 +08:00
|
|
|
|
},
|
2020-12-20 08:57:25 +08:00
|
|
|
|
new SettingsEnumDropdown<BackgroundSource>
|
2019-09-24 17:42:06 +08:00
|
|
|
|
{
|
2019-11-22 01:38:31 +08:00
|
|
|
|
LabelText = "Background source",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<BackgroundSource>(OsuSetting.MenuBackgroundSource),
|
2020-10-30 00:28:04 +08:00
|
|
|
|
},
|
2020-12-20 08:57:25 +08:00
|
|
|
|
new SettingsEnumDropdown<SeasonalBackgroundMode>
|
2020-10-30 00:28:04 +08:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Seasonal backgrounds",
|
2020-10-30 22:54:10 +08:00
|
|
|
|
Current = config.GetBindable<SeasonalBackgroundMode>(OsuSetting.SeasonalBackgroundMode),
|
2019-09-24 17:42:06 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|