mirror of
https://github.com/ppy/osu.git
synced 2025-01-14 18:32:56 +08:00
Adjust minimum values
This commit is contained in:
parent
bb2822a175
commit
8ace635249
@ -43,13 +43,13 @@ namespace osu.Game.Rulesets.Scoring
|
||||
/// The minimum achievable accuracy for the whole beatmap at this stage of gameplay.
|
||||
/// Assumes that all objects that have not been judged yet will receive the minimum hit result.
|
||||
/// </summary>
|
||||
public readonly BindableDouble MinimumAccuracy = new BindableDouble(0) { MinValue = 0, MaxValue = 1 };
|
||||
public readonly BindableDouble MinimumAccuracy = new BindableDouble { MinValue = 0, MaxValue = 1 };
|
||||
|
||||
/// <summary>
|
||||
/// The maximum achievable accuracy for the whole beatmap at this stage of gameplay.
|
||||
/// Assumes that all objects that have not been judged yet will receive the maximum hit result.
|
||||
/// </summary>
|
||||
public readonly BindableDouble MaximumAccuracy = new BindableDouble(0) { MinValue = 0, MaxValue = 1 };
|
||||
public readonly BindableDouble MaximumAccuracy = new BindableDouble(1) { MinValue = 0, MaxValue = 1 };
|
||||
|
||||
/// <summary>
|
||||
/// The current combo.
|
||||
|
Loading…
Reference in New Issue
Block a user