mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 15:27:25 +08:00
46 lines
1.6 KiB
C#
46 lines
1.6 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Configuration;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Localisation;
|
|
using osu.Framework.Platform;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Localisation;
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Graphics
|
|
{
|
|
public class RendererSettings : SettingsSubsection
|
|
{
|
|
protected override LocalisableString Header => GraphicsSettingsStrings.RendererHeader;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(FrameworkConfigManager config, OsuConfigManager osuConfig)
|
|
{
|
|
// NOTE: Compatability mode omitted
|
|
Children = new Drawable[]
|
|
{
|
|
// TODO: this needs to be a custom dropdown at some point
|
|
new SettingsEnumDropdown<FrameSync>
|
|
{
|
|
LabelText = GraphicsSettingsStrings.FrameLimiter,
|
|
Current = config.GetBindable<FrameSync>(FrameworkSetting.FrameSync)
|
|
},
|
|
new SettingsEnumDropdown<ExecutionMode>
|
|
{
|
|
LabelText = GraphicsSettingsStrings.ThreadingMode,
|
|
Current = config.GetBindable<ExecutionMode>(FrameworkSetting.ExecutionMode)
|
|
},
|
|
new SettingsCheckbox
|
|
{
|
|
LabelText = GraphicsSettingsStrings.ShowFPS,
|
|
Current = osuConfig.GetBindable<bool>(OsuSetting.ShowFpsDisplay)
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|