mirror of
https://github.com/ppy/osu.git
synced 2025-02-21 18:02:56 +08:00
# Conflicts: # osu-framework # osu.Game/GameModes/OsuGameMode.cs # osu.Game/GameModes/Play/Player.cs # osu.Game/OsuGame.cs # osu.Game/Overlays/MusicController.cs # osu.Game/Overlays/Options/EditorSection.cs # osu.Game/Overlays/Options/Input/MouseOptions.cs # osu.Game/Overlays/Options/Online/InGameChatOptions.cs # osu.Game/Overlays/Options/SkinSection.cs
36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using osu.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Configuration;
|
|
|
|
namespace osu.Game.Overlays.Options.Audio
|
|
{
|
|
public class VolumeOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "Volume";
|
|
|
|
private CheckBoxOption ignoreHitsounds;
|
|
|
|
public VolumeOptions()
|
|
{
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager config)
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new SpriteText { Text = "Master: TODO slider" },
|
|
new SpriteText { Text = "Music: TODO slider" },
|
|
new SpriteText { Text = "Effect: TODO slider" },
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Ignore beatmap hitsounds",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.IgnoreBeatmapSamples)
|
|
}
|
|
};
|
|
}
|
|
}
|
|
} |