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-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Configuration;
|
|
|
|
|
using osu.Framework.Graphics;
|
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 string Header => "General";
|
|
|
|
|
|
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",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
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",
|
2020-10-06 16:18:41 +08:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|