Merge pull request #11050 from Pennek/object-size

Modify object size to include 0-10 range
This commit is contained in:
Dan Balasescu
2020-12-02 10:28:57 +09:00
committed by GitHub

View File

@ -37,8 +37,8 @@ namespace osu.Game.Screens.Edit.Setup
Current = new BindableFloat(Beatmap.Value.BeatmapInfo.BaseDifficulty.CircleSize)
{
Default = BeatmapDifficulty.DEFAULT_DIFFICULTY,
MinValue = 2,
MaxValue = 7,
MinValue = 0,
MaxValue = 10,
Precision = 0.1f,
}
},