1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 14:07:24 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Graphics/DetailSettings.cs

38 lines
1.3 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2018-03-17 01:42:05 +08:00
2017-09-14 21:44:36 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
2017-09-14 21:44:36 +08:00
using osu.Game.Configuration;
namespace osu.Game.Overlays.Settings.Sections.Graphics
2016-11-11 06:40:42 +08:00
{
public class DetailSettings : SettingsSubsection
2016-11-11 06:40:42 +08:00
{
2016-11-09 11:38:40 +08:00
protected override string Header => "Detail Settings";
2017-09-14 21:44:36 +08:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
Children = new Drawable[]
2017-09-14 21:44:36 +08:00
{
new SettingsCheckbox
{
LabelText = "Storyboards",
Bindable = config.GetBindable<bool>(OsuSetting.ShowStoryboard)
},
2017-09-17 06:47:55 +08:00
new SettingsCheckbox
{
LabelText = "Rotate cursor when dragging",
Bindable = config.GetBindable<bool>(OsuSetting.CursorRotation)
},
2018-03-17 01:42:05 +08:00
new SettingsEnumDropdown<ScreenshotFormat>
{
LabelText = "Screenshot format",
Bindable = config.GetBindable<ScreenshotFormat>(OsuSetting.ScreenshotFormat)
}
2017-09-14 21:44:36 +08:00
};
}
2016-11-11 06:40:42 +08:00
}
}