mirror of
https://github.com/osukey/osukey.git
synced 2025-05-13 01:27:32 +09: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
55 lines
1.9 KiB
C#
55 lines
1.9 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.Input
|
|
{
|
|
public class MouseOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "Mouse";
|
|
|
|
private CheckBoxOption rawInput, mapRawInput, disableWheel, disableButtons, enableRipples;
|
|
|
|
public MouseOptions()
|
|
{
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager config)
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new SpriteText { Text = "Sensitivity: TODO slider" },
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Raw input",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.RawInput)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Map absolute raw input to the osu! window",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.AbsoluteToOsuWindow)
|
|
},
|
|
new SpriteText { Text = "Confine mouse cursor: TODO dropdown" },
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Disable mouse wheel in play mode",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.MouseDisableWheel)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Disable mouse buttons in play mode",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.MouseDisableButtons)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Cursor ripples",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.CursorRipple)
|
|
},
|
|
};
|
|
}
|
|
}
|
|
} |