mirror of
https://github.com/ppy/osu
synced 2024-12-11 17:42:28 +00:00
Add GameplayDisableOverlays setting.
This commit is contained in:
parent
2460488255
commit
4522564668
@ -100,6 +100,7 @@ namespace osu.Game.Configuration
|
||||
|
||||
Set(OsuSetting.IncreaseFirstObjectVisibility, true);
|
||||
Set(OsuSetting.GameplayDisableWinKey, true);
|
||||
Set(OsuSetting.GameplayDisableOverlayActivation, true);
|
||||
|
||||
// Update
|
||||
Set(OsuSetting.ReleaseStream, ReleaseStream.Lazer);
|
||||
@ -231,6 +232,7 @@ namespace osu.Game.Configuration
|
||||
UIHoldActivationDelay,
|
||||
HitLighting,
|
||||
MenuBackgroundSource,
|
||||
GameplayDisableWinKey
|
||||
GameplayDisableWinKey,
|
||||
GameplayDisableOverlayActivation
|
||||
}
|
||||
}
|
||||
|
@ -77,6 +77,11 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
|
||||
{
|
||||
LabelText = "Score display mode",
|
||||
Bindable = config.GetBindable<ScoringMode>(OsuSetting.ScoreDisplayMode)
|
||||
},
|
||||
new SettingsCheckbox
|
||||
{
|
||||
LabelText = "Disable overlays during gameplay",
|
||||
Bindable = config.GetBindable<bool>(OsuSetting.GameplayDisableOverlayActivation)
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user