2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2017-02-07 12:52:19 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Configuration;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Options.Sections.Gameplay
|
|
|
|
|
{
|
|
|
|
|
public class SongSelectOptions : OptionsSubsection
|
|
|
|
|
{
|
|
|
|
|
protected override string Header => "Song Select";
|
2016-11-30 23:32:07 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-01-31 17:37:11 +08:00
|
|
|
|
new OptionSlider<double>
|
2016-12-05 22:17:46 +08:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Display beatmaps from",
|
|
|
|
|
Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.DisplayStarsMinimum)
|
|
|
|
|
},
|
2017-01-31 17:37:11 +08:00
|
|
|
|
new OptionSlider<double>
|
2016-12-05 22:17:46 +08:00
|
|
|
|
{
|
|
|
|
|
LabelText = "up to",
|
|
|
|
|
Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.DisplayStarsMaximum)
|
|
|
|
|
},
|
2016-11-30 23:32:07 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2017-02-07 12:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|