1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:27:29 +08:00

fix implementations of IHasSliderVelocity

This commit is contained in:
OliBomby 2023-04-25 18:22:22 +02:00
parent c23a7b014e
commit 66eda40cdf
2 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ namespace osu.Game.Rulesets.Osu.Objects
/// </summary>
public bool OnlyJudgeNestedObjects = true;
public BindableDouble SliderVelocityBindable = new BindableDouble(1);
public BindableNumber<double> SliderVelocityBindable { get; } = new BindableDouble(1);
public double SliderVelocity
{

View File

@ -41,7 +41,7 @@ namespace osu.Game.Rulesets.Objects.Legacy
public double Velocity = 1;
public BindableDouble SliderVelocityBindable = new BindableDouble(1);
public BindableNumber<double> SliderVelocityBindable { get; } = new BindableDouble(1);
public double SliderVelocity
{