1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 14:17:26 +08:00

Increased maximum start modifier higher (15x -> 25x)

Tried playing around with higher values and personally had quite fun when the circles covered the whole screen so I raised the max modifier to 25. Works best with an AR of <6.
This commit is contained in:
Fabian 2020-07-18 02:21:55 +02:00
parent a6cf77beae
commit 0975610bf7

View File

@ -21,7 +21,7 @@ namespace osu.Game.Rulesets.Osu.Mods
public override BindableNumber<float> StartScale { get; } = new BindableFloat
{
MinValue = 1f,
MaxValue = 15f,
MaxValue = 25f,
Default = 2f,
Value = 2f,
Precision = 0.1f,