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:
parent
c23a7b014e
commit
66eda40cdf
@ -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
|
||||
{
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user