1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 03:27:24 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Debug/GeneralSettings.cs

41 lines
1.4 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;
2020-11-18 18:15:56 +08:00
using osu.Framework.Screens;
using osu.Game.Screens.Import;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings.Sections.Debug
{
public class GeneralSettings : SettingsSubsection
{
protected override LocalisableString Header => "General";
2018-04-13 17:19:50 +08:00
2020-11-28 16:31:24 +08:00
[BackgroundDependencyLoader(true)]
2020-11-18 18:15:56 +08:00
private void load(FrameworkDebugConfigManager config, FrameworkConfigManager frameworkConfig, OsuGame game)
2018-04-13 17:19:50 +08:00
{
Children = new Drawable[]
{
new SettingsCheckbox
{
LabelText = "Show log overlay",
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 = "Bypass front-to-back render pass",
Current = config.GetBindable<bool>(DebugSetting.BypassFrontToBackPass)
2019-06-06 15:49:42 +08:00
}
2018-04-13 17:19:50 +08:00
};
2020-11-18 18:15:56 +08:00
Add(new SettingsButton
{
Text = "Import files",
Action = () => game?.PerformFromScreen(menu => menu.Push(new FileImportScreen()))
});
2018-04-13 17:19:50 +08:00
}
}
}