1
0
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:
cdwcgt 2022-11-02 15:11:49 +09:00
parent df1f7e2b13
commit d6b8439121
No known key found for this signature in database
GPG Key ID: 144396D01095C3A2
2 changed files with 6 additions and 0 deletions

View File

@ -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!;

View File

@ -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>();