Fix and add XMLDoc

This commit is contained in:
Lucas A 2020-09-02 20:55:26 +02:00
parent 3fc6a74fdf
commit 754274a146
2 changed files with 4 additions and 1 deletions

View File

@ -88,6 +88,9 @@ namespace osu.Game
private IdleTracker idleTracker;
/// <summary>
/// Whether overlays should be able to be opened game-wide. Value is sourced from the current active screen.
/// </summary>
public readonly IBindable<OverlayActivation> OverlayActivationMode = new Bindable<OverlayActivation>();
protected OsuScreenStack ScreenStack;

View File

@ -44,7 +44,7 @@ namespace osu.Game.Screens
public virtual bool HideOverlaysOnEnter => false;
/// <summary>
/// The initial initial overlay activation mode to use when this screen is entered for the first time.
/// The initial overlay activation mode to use when this screen is entered for the first time.
/// </summary>
protected virtual OverlayActivation InitialOverlayActivationMode => OverlayActivation.All;