mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
81 lines
3.0 KiB
C#
81 lines
3.0 KiB
C#
// Copyright (c) 2007-2017 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.Configuration;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using OpenTK;
|
|
|
|
namespace osu.Game.Overlays.Options.Sections
|
|
{
|
|
public class SkinSection : OptionsSection
|
|
{
|
|
public override string Header => "Skin";
|
|
public override FontAwesome Icon => FontAwesome.fa_paint_brush;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager config)
|
|
{
|
|
FlowContent.Spacing = new Vector2(0, 5);
|
|
Children = new Drawable[]
|
|
{
|
|
new OptionLabel { Text = "TODO: Skin preview textures" },
|
|
new OptionLabel { Text = "Current skin: TODO dropdown" },
|
|
new OsuButton
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Text = "Preview gameplay",
|
|
},
|
|
new OsuButton
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Text = "Open skin folder",
|
|
},
|
|
new OsuButton
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Text = "Export as .osk",
|
|
},
|
|
new OsuCheckbox
|
|
{
|
|
LabelText = "Ignore all beatmap skins",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.IgnoreBeatmapSkins)
|
|
},
|
|
new OsuCheckbox
|
|
{
|
|
LabelText = "Use skin's sound samples",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.SkinSamples)
|
|
},
|
|
new OsuCheckbox
|
|
{
|
|
LabelText = "Use Taiko skin for Taiko mode",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.UseTaikoSkin)
|
|
},
|
|
new OsuCheckbox
|
|
{
|
|
LabelText = "Always use skin cursor",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.UseSkinCursor)
|
|
},
|
|
new OptionSlider<double>
|
|
{
|
|
LabelText = "Menu cursor size",
|
|
Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.MenuCursorSize)
|
|
},
|
|
new OptionSlider<double>
|
|
{
|
|
LabelText = "Gameplay cursor size",
|
|
Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.GameplayCursorSize)
|
|
},
|
|
new OsuCheckbox
|
|
{
|
|
LabelText = "Automatic cursor size",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.AutomaticCursorSizing)
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|