1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 22:42:55 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/DebugSettings/GeneralSettings.cs

35 lines
1.2 KiB
C#
Raw Normal View History

// 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-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Localisation;
using osu.Game.Localisation;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings.Sections.DebugSettings
2018-04-13 17:19:50 +08:00
{
2022-11-24 13:32:20 +08:00
public partial class GeneralSettings : SettingsSubsection
2018-04-13 17:19:50 +08:00
{
2023-09-06 14:00:07 +08:00
protected override LocalisableString Header => CommonStrings.General;
2018-04-13 17:19:50 +08:00
2023-06-24 20:35:23 +08:00
[BackgroundDependencyLoader]
private void load(FrameworkDebugConfigManager config, FrameworkConfigManager frameworkConfig)
2018-04-13 17:19:50 +08:00
{
Children = new Drawable[]
{
new SettingsCheckbox
{
LabelText = DebugSettingsStrings.ShowLogOverlay,
Current = frameworkConfig.GetBindable<bool>(FrameworkSetting.ShowLogOverlay)
2018-04-13 17:19:50 +08:00
},
new SettingsCheckbox
2019-06-06 15:49:42 +08:00
{
LabelText = DebugSettingsStrings.BypassFrontToBackPass,
Current = config.GetBindable<bool>(DebugSetting.BypassFrontToBackPass)
},
2018-04-13 17:19:50 +08:00
};
}
}
}