From 0df97744ad8425e7b62dd8ea305a07310d921066 Mon Sep 17 00:00:00 2001 From: mk-56 Date: Sat, 27 Nov 2021 13:34:09 +0100 Subject: [PATCH] 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 --- 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 ae5ca0d679..6aeb378c69 100644 --- a/osu.Game.Rulesets.Osu/Mods/OsuModApproachDifferent.cs +++ b/osu.Game.Rulesets.Osu/Mods/OsuModApproachDifferent.cs @@ -1,4 +1,4 @@ -// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. +// Copyright (c) ppy Pty Ltd . 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, } } }