osu/osu.Game/Overlays/Options/Graphics/DetailOptions.cs

26 lines
961 B
C#
Raw Normal View History

2016-11-08 02:28:06 +00:00
using osu.Framework.Graphics;
2016-11-03 02:49:26 +00:00
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.UserInterface;
2016-11-08 02:24:41 +00:00
namespace osu.Game.Overlays.Options.Graphics
2016-11-03 02:49:26 +00:00
{
2016-11-03 04:26:49 +00:00
public class DetailOptions : OptionsSubsection
2016-11-03 02:49:26 +00:00
{
protected override string Header => "Detail Settings";
2016-11-03 04:26:49 +00:00
public DetailOptions()
2016-11-03 02:49:26 +00:00
{
Children = new Drawable[]
{
new BasicCheckBox { LabelText = "Snaking sliders" },
new BasicCheckBox { LabelText = "Background video" },
new BasicCheckBox { LabelText = "Storyboards" },
new BasicCheckBox { LabelText = "Combo bursts" },
new BasicCheckBox { LabelText = "Hit lighting" },
new BasicCheckBox { LabelText = "Shaders" },
new BasicCheckBox { LabelText = "Softening filter" },
new SpriteText { Text = "Screenshot format TODO: dropdown" }
};
}
}
}