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

Allow grid spacing setting up to 256 pixels

Addresses https://github.com/ppy/osu/discussions/29713.

I think there's valid uses of this apart from just hiding (ie values
between 128 and 256) so let's just get this in.
This commit is contained in:
Dean Herbert
2025-03-10 14:45:36 +09:00
Unverified
parent f1c49dea59
commit bbd2c33934
@@ -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,
};