2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-06-06 11:32:59 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2019-11-21 21:35:15 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2018-06-06 11:32:59 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2021-07-15 11:50:34 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-06-06 11:32:59 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2021-08-12 11:11:22 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2018-06-06 11:32:59 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Gameplay
|
|
|
|
|
{
|
|
|
|
|
public class ModsSettings : SettingsSubsection
|
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
protected override LocalisableString Header => GameplaySettingsStrings.ModsHeader;
|
2018-06-06 11:32:59 +08:00
|
|
|
|
|
2022-05-16 13:09:37 +08:00
|
|
|
|
public override IEnumerable<LocalisableString> FilterTerms => base.FilterTerms.Concat(new LocalisableString[] { "mod" });
|
2019-11-21 21:35:15 +08:00
|
|
|
|
|
2018-06-06 11:32:59 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
new SettingsCheckbox
|
|
|
|
|
{
|
2021-08-12 11:11:22 +08:00
|
|
|
|
LabelText = GameplaySettingsStrings.IncreaseFirstObjectVisibility,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<bool>(OsuSetting.IncreaseFirstObjectVisibility),
|
2018-06-06 11:32:59 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|