1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 10:33:07 +08:00

Add simple xmldoc

This commit is contained in:
Salman Ahmed 2021-05-31 00:07:29 +03:00
parent d12e93bfc6
commit 3fbd4e276d

View File

@ -47,6 +47,13 @@ namespace osu.Game.Screens.Play.HUD
private readonly Container counterContainer;
/// <summary>
/// Changes the visibility state of the combo counter internally without affecting its <see cref="SkinnableInfo"/>.
/// </summary>
/// <remarks>
/// This is temporarily done for rulesets that provide their own combo counter and don't want the HUD one to be visible,
/// without potentially affecting the user's selected skin.
/// </remarks>
public bool ContentVisible
{
set => counterContainer.Alpha = value ? 1 : 0;