From 1ae41118cd611d4965272a3272035f2c307acc7a Mon Sep 17 00:00:00 2001 From: mk-56 Date: Sat, 27 Nov 2021 22:59:09 +0100 Subject: [PATCH] Added gravity as a default. --- osu.Game.Rulesets.Osu/Mods/OsuModApproachDifferent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game.Rulesets.Osu/Mods/OsuModApproachDifferent.cs b/osu.Game.Rulesets.Osu/Mods/OsuModApproachDifferent.cs index 6aeb378c69..db74790221 100644 --- a/osu.Game.Rulesets.Osu/Mods/OsuModApproachDifferent.cs +++ b/osu.Game.Rulesets.Osu/Mods/OsuModApproachDifferent.cs @@ -31,7 +31,7 @@ namespace osu.Game.Rulesets.Osu.Mods }; [SettingSource("Style", "Change the animation style of the approach circles.", 1)] - public Bindable Style { get; } = new Bindable(); + public Bindable Style { get; } = new Bindable(AnimationStyle.Gravity); public void ApplyToDrawableHitObject(DrawableHitObject drawable) { @@ -89,8 +89,8 @@ namespace osu.Game.Rulesets.Osu.Mods public enum AnimationStyle { - Gravity, Linear, + Gravity, InOut1, InOut2, Accelerate1,