1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 17:40:08 +08:00

Merge pull request #32311 from peppy/allow-larger-grid

Allow grid spacing setting up to 256 pixels
This commit is contained in:
Bartłomiej Dach
2025-03-10 09:44:09 +01:00
committed by GitHub
Unverified
@@ -57,7 +57,7 @@ namespace osu.Game.Rulesets.Osu.Edit
public BindableFloat Spacing { get; } = new BindableFloat(4f)
{
MinValue = 4f,
MaxValue = 128f,
MaxValue = 256f,
Precision = 0.01f,
};