mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 06:47:25 +08:00
cc0f61f545
# 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
46 lines
1.7 KiB
C#
46 lines
1.7 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.Gameplay
|
|
{
|
|
public class GeneralGameplayOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "General";
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager config)
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new SpriteText { Text = "Background dim: TODO slider" },
|
|
new SpriteText { Text = "Progress display: TODO dropdown" },
|
|
new SpriteText { Text = "Score meter type: TODO dropdown" },
|
|
new SpriteText { Text = "Score meter size: TODO slider" },
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Always show key overlay",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.KeyOverlay)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Show approach circle on first \"Hidden\" object",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.HiddenShowFirstApproach)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Scale osu!mania scroll speed with BPM",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.ManiaSpeedBPMScale)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Remember osu!mania scroll speed per beatmap",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.UsePerBeatmapManiaSpeed)
|
|
},
|
|
};
|
|
}
|
|
}
|
|
} |