mirror of https://github.com/ppy/osu
Add GameplayDisableOverlays setting.
This commit is contained in:
parent
2460488255
commit
4522564668
|
@ -100,6 +100,7 @@ protected override void InitialiseDefaults()
|
|||
|
||||
Set(OsuSetting.IncreaseFirstObjectVisibility, true);
|
||||
Set(OsuSetting.GameplayDisableWinKey, true);
|
||||
Set(OsuSetting.GameplayDisableOverlayActivation, true);
|
||||
|
||||
// Update
|
||||
Set(OsuSetting.ReleaseStream, ReleaseStream.Lazer);
|
||||
|
@ -231,6 +232,7 @@ public enum OsuSetting
|
|||
UIHoldActivationDelay,
|
||||
HitLighting,
|
||||
MenuBackgroundSource,
|
||||
GameplayDisableWinKey
|
||||
GameplayDisableWinKey,
|
||||
GameplayDisableOverlayActivation
|
||||
}
|
||||
}
|
||||
|
|
|
@ -77,6 +77,11 @@ private void load(OsuConfigManager config)
|
|||
{
|
||||
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