Remove certain options when not running on Windows

This commit is contained in:
Drew DeVault 2016-11-10 21:54:01 -05:00
parent 788c11de10
commit d36c8e9203
2 changed files with 13 additions and 4 deletions

View File

@ -1,4 +1,5 @@
using osu.Framework.Graphics;
using osu.Framework;
using osu.Framework.Graphics;
using osu.Game.Graphics;
namespace osu.Game.Overlays.Options.Audio
@ -12,7 +13,7 @@ public AudioSection()
{
Children = new Drawable[]
{
new AudioDevicesOptions(),
new AudioDevicesOptions { Alpha = RuntimeInfo.IsWindows ? 1 : 0 },
new VolumeOptions(),
new OffsetAdjustmentOptions(),
};

View File

@ -17,8 +17,16 @@ public MouseOptions()
Children = new Drawable[]
{
new SpriteText { Text = "Sensitivity: TODO slider" },
rawInput = new CheckBoxOption { LabelText = "Raw input" },
mapRawInput = new CheckBoxOption { LabelText = "Map absolute raw input to the osu! window" },
rawInput = new CheckBoxOption
{
LabelText = "Raw input",
Alpha = RuntimeInfo.IsWindows ? 1 : 0
},
mapRawInput = new CheckBoxOption
{
LabelText = "Map absolute raw input to the osu! window",
Alpha = RuntimeInfo.IsWindows ? 1 : 0
},
new SpriteText { Text = "Confine mouse cursor: TODO dropdown" },
disableWheel = new CheckBoxOption { LabelText = "Disable mouse wheel in play mode" },
disableButtons = new CheckBoxOption { LabelText = "Disable mouse buttons in play mode" },