Move non-matching default value to argon skin default speficiation instead

This commit is contained in:
Dean Herbert 2023-11-16 14:18:49 +09:00
parent 39a3313929
commit 73eda6c09c
No known key found for this signature in database
2 changed files with 5 additions and 2 deletions

View File

@ -27,7 +27,7 @@ namespace osu.Game.Screens.Play.HUD
};
[SettingSource(typeof(SkinnableComponentStrings), nameof(SkinnableComponentStrings.ShowLabel), nameof(SkinnableComponentStrings.ShowLabelDescription))]
public Bindable<bool> ShowLabel { get; } = new BindableBool();
public Bindable<bool> ShowLabel { get; } = new BindableBool(true);
public bool UsesFixedAnchor { get; set; }

View File

@ -214,7 +214,10 @@ namespace osu.Game.Skinning
Size = new Vector2(380, 72),
Position = new Vector2(4, 5)
},
new ArgonScoreCounter(),
new ArgonScoreCounter
{
ShowLabel = { Value = false },
},
new ArgonHealthDisplay(),
new BoxElement
{