osu/osu.Game/Overlays/Options/Sections/EditorSection.cs

60 lines
2.1 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-12-06 09:56:20 +00:00
2016-11-10 22:40:42 +00:00
using osu.Framework.Allocation;
2016-11-03 04:43:05 +00:00
using osu.Framework.Graphics;
2016-11-09 03:38:40 +00:00
using osu.Game.Configuration;
using osu.Game.Graphics;
using osu.Game.Graphics.UserInterface;
using OpenTK;
using osu.Framework.Graphics.Containers;
2016-11-03 04:43:05 +00:00
namespace osu.Game.Overlays.Options.Sections
2016-11-10 22:40:42 +00:00
{
public class EditorSection : OptionsSection
{
public override string Header => "Editor";
2016-11-09 03:38:40 +00:00
public override FontAwesome Icon => FontAwesome.fa_pencil;
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
2016-11-09 03:38:40 +00:00
{
FlowContent.FlowStrategy = FlowStrategies.CreateFillFlow(new Vector2(0, 5));
2016-11-10 22:40:42 +00:00
Children = new Drawable[]
2016-11-09 03:38:40 +00:00
{
new OsuCheckbox
2016-11-10 22:40:42 +00:00
{
LabelText = "Background video",
Bindable = config.GetBindable<bool>(OsuConfig.VideoEditor)
},
new OsuCheckbox
2016-11-10 22:40:42 +00:00
{
LabelText = "Always use default skin",
Bindable = config.GetBindable<bool>(OsuConfig.EditorDefaultSkin)
},
new OsuCheckbox
2016-11-10 22:40:42 +00:00
{
LabelText = "Snaking sliders",
Bindable = config.GetBindable<bool>(OsuConfig.EditorSnakingSliders)
},
new OsuCheckbox
2016-11-10 22:40:42 +00:00
{
LabelText = "Hit animations",
Bindable = config.GetBindable<bool>(OsuConfig.EditorHitAnimations)
},
new OsuCheckbox
2016-11-10 22:40:42 +00:00
{
LabelText = "Follow points",
Bindable = config.GetBindable<bool>(OsuConfig.EditorFollowPoints)
},
new OsuCheckbox
2016-11-10 22:40:42 +00:00
{
LabelText = "Stacking",
Bindable = config.GetBindable<bool>(OsuConfig.EditorStacking)
},
};
}
}
}