Give ModTimeRamp an adjust pitch setting.

Implement in ModWindDown and ModWindUp
This commit is contained in:
Ronnie Moir
2020-06-13 15:16:27 +01:00
parent 969d0b7228
commit 201bfda338
3 changed files with 29 additions and 1 deletions

View File

@ -37,6 +37,13 @@ namespace osu.Game.Rulesets.Mods
Precision = 0.01,
};
[SettingSource("Adjust Pitch", "Should pitch be adjusted with speed")]
public override BindableBool AdjustPitch { get; } = new BindableBool
{
Default = true,
Value = true
};
public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(ModWindUp)).ToArray();
}
}