mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 05:27:40 +08:00
46 lines
1.6 KiB
C#
46 lines
1.6 KiB
C#
using OpenTK;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public class SkinSection : OptionsSection
|
|
{
|
|
protected override string Header => "Skin";
|
|
public override FontAwesome Icon => FontAwesome.fa_paint_brush;
|
|
|
|
public SkinSection()
|
|
{
|
|
content.Spacing = new Vector2(0, 5);
|
|
Children = new Drawable[]
|
|
{
|
|
new SpriteText { Text = "TODO: Skin preview textures" },
|
|
new SpriteText { 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 BasicCheckBox { LabelText = "Ignore all beatmap skins" },
|
|
new BasicCheckBox { LabelText = "Use skin's sound samples" },
|
|
new BasicCheckBox { LabelText = "Use Taiko skin for Taiko mode" },
|
|
new BasicCheckBox { LabelText = "Always use skin cursor" },
|
|
new SpriteText { Text = "Cursor size: TODO slider" },
|
|
new BasicCheckBox { LabelText = "Automatic cursor size" },
|
|
};
|
|
}
|
|
}
|
|
} |