1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 12:22:56 +08:00

Remove precision limitations of SliderVelocity

This commit is contained in:
Dean Herbert 2023-09-07 17:41:50 +09:00
parent b34a36f6ce
commit dcbdc114ce
2 changed files with 0 additions and 2 deletions

View File

@ -136,7 +136,6 @@ namespace osu.Game.Rulesets.Osu.Objects
public BindableNumber<double> SliderVelocityMultiplierBindable { get; } = new BindableDouble(1)
{
Precision = 0.01,
MinValue = 0.1,
MaxValue = 10
};

View File

@ -23,7 +23,6 @@ namespace osu.Game.Beatmaps.ControlPoints
/// </summary>
public readonly BindableDouble SliderVelocityBindable = new BindableDouble(1)
{
Precision = 0.01,
MinValue = 0.1,
MaxValue = 10
};