mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
replace easement with easing
This commit is contained in:
@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user