1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-23 07:18:45 +08:00

Moved linear to a better place.

i decided to go with leaving it under gravity, its plenty visible and fine there, since the public enum list self orders I wasn't sure about how i could set a default that wasn't the topmost option
This commit is contained in:
mk-56 2021-11-27 13:34:09 +01:00
parent 5e56122d65
commit 0df97744ad

View File

@ -1,4 +1,4 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
@ -90,6 +90,7 @@ namespace osu.Game.Rulesets.Osu.Mods
public enum AnimationStyle
{
Gravity,
Linear,
InOut1,
InOut2,
Accelerate1,
@ -98,7 +99,6 @@ namespace osu.Game.Rulesets.Osu.Mods
Decelerate1,
Decelerate2,
Decelerate3,
Linear,
}
}
}