mirror of
https://github.com/ppy/osu.git
synced 2025-03-03 22:43:04 +08:00
Added gravity as a default.
This commit is contained in:
parent
0df97744ad
commit
1ae41118cd
@ -31,7 +31,7 @@ namespace osu.Game.Rulesets.Osu.Mods
|
|||||||
};
|
};
|
||||||
|
|
||||||
[SettingSource("Style", "Change the animation style of the approach circles.", 1)]
|
[SettingSource("Style", "Change the animation style of the approach circles.", 1)]
|
||||||
public Bindable<AnimationStyle> Style { get; } = new Bindable<AnimationStyle>();
|
public Bindable<AnimationStyle> Style { get; } = new Bindable<AnimationStyle>(AnimationStyle.Gravity);
|
||||||
|
|
||||||
public void ApplyToDrawableHitObject(DrawableHitObject drawable)
|
public void ApplyToDrawableHitObject(DrawableHitObject drawable)
|
||||||
{
|
{
|
||||||
@ -89,8 +89,8 @@ namespace osu.Game.Rulesets.Osu.Mods
|
|||||||
|
|
||||||
public enum AnimationStyle
|
public enum AnimationStyle
|
||||||
{
|
{
|
||||||
Gravity,
|
|
||||||
Linear,
|
Linear,
|
||||||
|
Gravity,
|
||||||
InOut1,
|
InOut1,
|
||||||
InOut2,
|
InOut2,
|
||||||
Accelerate1,
|
Accelerate1,
|
||||||
|
Loading…
Reference in New Issue
Block a user