mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
add xmldoc for DimAmount
This commit is contained in:
@ -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>();
|
||||
|
Reference in New Issue
Block a user