mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 01:07:24 +08:00
56 lines
2.2 KiB
C#
56 lines
2.2 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// 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.Sprites;
|
|
|
|
namespace osu.Game.Screens.Play.PlayerSettings
|
|
{
|
|
public class VisualSettings : PlayerSettingsGroup
|
|
{
|
|
protected override string Title => "Visual settings";
|
|
|
|
private readonly PlayerSliderBar<double> dimSliderBar;
|
|
private readonly PlayerSliderBar<double> blurSliderBar;
|
|
private readonly PlayerCheckbox showStoryboardToggle;
|
|
private readonly PlayerCheckbox beatmapSkinsToggle;
|
|
private readonly PlayerCheckbox beatmapHitsoundsToggle;
|
|
|
|
public VisualSettings()
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new OsuSpriteText
|
|
{
|
|
Text = "Background dim:"
|
|
},
|
|
dimSliderBar = new PlayerSliderBar<double>(),
|
|
new OsuSpriteText
|
|
{
|
|
Text = "Background blur:"
|
|
},
|
|
blurSliderBar = new PlayerSliderBar<double>(),
|
|
new OsuSpriteText
|
|
{
|
|
Text = "Toggles:"
|
|
},
|
|
showStoryboardToggle = new PlayerCheckbox { LabelText = "Storyboards" },
|
|
beatmapSkinsToggle = new PlayerCheckbox { LabelText = "Beatmap skins" },
|
|
beatmapHitsoundsToggle = new PlayerCheckbox { LabelText = "Beatmap hit sounds" }
|
|
};
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager config)
|
|
{
|
|
dimSliderBar.Bindable = config.GetBindable<double>(OsuSetting.DimLevel);
|
|
blurSliderBar.Bindable = config.GetBindable<double>(OsuSetting.BlurLevel);
|
|
showStoryboardToggle.Bindable = config.GetBindable<bool>(OsuSetting.ShowStoryboard);
|
|
beatmapSkinsToggle.Bindable = config.GetBindable<bool>(OsuSetting.BeatmapSkins);
|
|
beatmapHitsoundsToggle.Bindable = config.GetBindable<bool>(OsuSetting.BeatmapHitsounds);
|
|
}
|
|
}
|
|
}
|