2019-01-24 08:43:03 +00: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.
|
2019-01-04 05:18:29 +00:00
|
|
|
|
|
2022-08-07 15:11:15 +00:00
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
using osu.Game.Localisation;
|
2019-01-04 05:18:29 +00:00
|
|
|
|
|
2019-01-04 04:29:37 +00:00
|
|
|
|
namespace osu.Game.Configuration
|
|
|
|
|
{
|
|
|
|
|
public enum ScalingMode
|
|
|
|
|
{
|
2022-08-09 14:35:19 +00:00
|
|
|
|
[LocalisableDescription(typeof(LayoutSettingsStrings), nameof(LayoutSettingsStrings.ScalingOff))]
|
2019-01-04 04:29:37 +00:00
|
|
|
|
Off,
|
2022-08-07 15:11:15 +00:00
|
|
|
|
|
2022-08-09 14:35:19 +00:00
|
|
|
|
[LocalisableDescription(typeof(LayoutSettingsStrings), nameof(LayoutSettingsStrings.ScaleEverything))]
|
2019-01-04 04:29:37 +00:00
|
|
|
|
Everything,
|
2019-02-28 04:31:40 +00:00
|
|
|
|
|
2022-08-10 08:41:53 +00:00
|
|
|
|
[LocalisableDescription(typeof(LayoutSettingsStrings), nameof(LayoutSettingsStrings.ScaleEverythingExcludingOverlays))]
|
2019-01-04 04:29:37 +00:00
|
|
|
|
ExcludeOverlays,
|
2022-08-07 15:11:15 +00:00
|
|
|
|
|
2022-08-09 14:35:19 +00:00
|
|
|
|
[LocalisableDescription(typeof(LayoutSettingsStrings), nameof(LayoutSettingsStrings.ScaleGameplay))]
|
2019-01-04 04:29:37 +00:00
|
|
|
|
Gameplay,
|
|
|
|
|
}
|
2019-01-04 05:18:29 +00:00
|
|
|
|
}
|