replace easement with easing

This commit is contained in:
Gabe Livengood
2022-06-09 18:26:18 -04:00
parent 4e01db03bb
commit 569c39942a
5 changed files with 8 additions and 8 deletions

View File

@ -20,14 +20,14 @@ namespace osu.Game.Rulesets.Osu.Mods
public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(OsuModMagnetised)).ToArray();
[SettingSource("Repulsion strength", "How strong the repulsion is.", 0)]
public override BindableFloat EasementStrength { get; } = new BindableFloat(0.6f)
public override BindableFloat EasingStrength { get; } = new BindableFloat(0.6f)
{
Precision = 0.05f,
MinValue = 0.05f,
MaxValue = 1.0f,
};
protected override float EasementStrengthMultiplier => 0.8f;
protected override float EasingStrengthMultiplier => 0.8f;
protected override Vector2 DestinationVector
{