1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-05 11:43:01 +08:00

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
commit 1857401159
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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