// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Game.Configuration; using osu.Game.Graphics.UserInterface; namespace osu.Game.Overlays.Options.Sections.Graphics { public class DetailOptions : OptionsSubsection { protected override string Header => "Detail Settings"; [BackgroundDependencyLoader] private void load(OsuConfigManager config) { Children = new Drawable[] { new OsuCheckbox { LabelText = "Snaking in sliders", Bindable = config.GetBindable(OsuConfig.SnakingInSliders) }, new OsuCheckbox { LabelText = "Snaking out sliders", Bindable = config.GetBindable(OsuConfig.SnakingOutSliders) }, new OsuCheckbox { LabelText = "Background video", Bindable = config.GetBindable(OsuConfig.Video) }, new OsuCheckbox { LabelText = "Storyboards", Bindable = config.GetBindable(OsuConfig.ShowStoryboard) }, new OsuCheckbox { LabelText = "Combo bursts", Bindable = config.GetBindable(OsuConfig.ComboBurst) }, new OsuCheckbox { LabelText = "Hit lighting", Bindable = config.GetBindable(OsuConfig.HitLighting) }, new OsuCheckbox { LabelText = "Shaders", Bindable = config.GetBindable(OsuConfig.Bloom) }, new OsuCheckbox { LabelText = "Softening filter", Bindable = config.GetBindable(OsuConfig.BloomSoftening) }, new OptionEnumDropDown { LabelText = "Screenshot", Bindable = config.GetBindable(OsuConfig.ScreenshotFormat) } }; } } }