mirror of
https://github.com/ppy/osu.git
synced 2025-01-26 12:35:34 +08:00
add xmldoc for DimAmount
This commit is contained in:
parent
df1f7e2b13
commit
d6b8439121
@ -46,6 +46,9 @@ namespace osu.Game.Graphics.Containers
|
||||
|
||||
protected Bindable<double> UserDimLevel { get; private set; } = null!;
|
||||
|
||||
/// <summary>
|
||||
/// The amount of dim to be override if <see cref="IgnoreUserSettings"/> is true.
|
||||
/// </summary>
|
||||
public Bindable<float> DimAmount { get; set; } = new Bindable<float>();
|
||||
|
||||
protected Bindable<bool> LightenDuringBreaks { get; private set; } = null!;
|
||||
|
@ -43,6 +43,9 @@ namespace osu.Game.Screens.Backgrounds
|
||||
/// </summary>
|
||||
public readonly Bindable<float> BlurAmount = new BindableFloat();
|
||||
|
||||
/// <summary>
|
||||
/// The amount of dim to be override if <see cref="IgnoreUserSettings"/> is true.
|
||||
/// </summary>
|
||||
public readonly Bindable<float> DimAmount = new Bindable<float>();
|
||||
|
||||
internal readonly IBindable<bool> IsBreakTime = new Bindable<bool>();
|
||||
|
Loading…
Reference in New Issue
Block a user