1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 04:39:54 +08:00

Add "hide during gameplay" mode

This commit is contained in:
Dean Herbert
2020-10-20 14:20:44 +09:00
Unverified
parent 024009e174
commit 4f8a755518
2 changed files with 5 additions and 2 deletions
@@ -89,7 +89,7 @@ namespace osu.Game.Tests.Visual.Gameplay
[Test]
public void TestExternalHideDoesntAffectConfig()
{
HUDVisibilityMode originalConfigValue = HUDVisibilityMode.DuringGameplay;
HUDVisibilityMode originalConfigValue = HUDVisibilityMode.HideDuringBreaks;
createNew();
+4 -1
View File
@@ -9,8 +9,11 @@ namespace osu.Game.Configuration
{
Never,
[Description("Hide during gameplay")]
HideDuringGameplay,
[Description("Hide during breaks")]
DuringGameplay,
HideDuringBreaks,
Always
}