2020-07-22 12:41:06 +09: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.
|
|
|
|
|
|
2022-08-08 01:11:15 +10:00
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
using osu.Game.Localisation;
|
2020-07-22 12:41:06 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Configuration
|
|
|
|
|
{
|
|
|
|
|
public enum HUDVisibilityMode
|
|
|
|
|
{
|
2022-08-10 00:35:19 +10:00
|
|
|
|
[LocalisableDescription(typeof(GameplaySettingsStrings), nameof(GameplaySettingsStrings.NeverShowHUD))]
|
2020-07-22 12:41:06 +09:00
|
|
|
|
Never,
|
|
|
|
|
|
2022-08-08 01:11:15 +10:00
|
|
|
|
[LocalisableDescription(typeof(GameplaySettingsStrings), nameof(GameplaySettingsStrings.HideDuringGameplay))]
|
2020-10-20 14:20:44 +09:00
|
|
|
|
HideDuringGameplay,
|
|
|
|
|
|
2022-08-10 00:35:19 +10:00
|
|
|
|
[LocalisableDescription(typeof(GameplaySettingsStrings), nameof(GameplaySettingsStrings.AlwaysShowHUD))]
|
2020-07-22 12:41:06 +09:00
|
|
|
|
Always
|
|
|
|
|
}
|
|
|
|
|
}
|