mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 05:17:29 +08:00
47 lines
1.7 KiB
C#
47 lines
1.7 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Configuration;
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Audio
|
|
{
|
|
public class MainMenuSettings : SettingsSubsection
|
|
{
|
|
protected override string Header => "Main Menu";
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager config)
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new SettingsCheckbox
|
|
{
|
|
LabelText = "Interface voices",
|
|
Bindable = config.GetBindable<bool>(OsuSetting.MenuVoice)
|
|
},
|
|
new SettingsCheckbox
|
|
{
|
|
LabelText = "osu! music theme",
|
|
Bindable = config.GetBindable<bool>(OsuSetting.MenuMusic)
|
|
},
|
|
new SettingsDropdown<IntroSequence>
|
|
{
|
|
LabelText = "Intro sequence",
|
|
Bindable = config.GetBindable<IntroSequence>(OsuSetting.IntroSequence),
|
|
Items = Enum.GetValues(typeof(IntroSequence)).Cast<IntroSequence>()
|
|
},
|
|
new SettingsDropdown<BackgroundSource>
|
|
{
|
|
LabelText = "Background source",
|
|
Bindable = config.GetBindable<BackgroundSource>(OsuSetting.MenuBackgroundSource),
|
|
Items = Enum.GetValues(typeof(BackgroundSource)).Cast<BackgroundSource>()
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|