// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Framework.Graphics { /// /// See http://easings.net/ for more samples. /// public enum Easing { None, Out, In, InQuad, OutQuad, InOutQuad, InCubic, OutCubic, InOutCubic, InQuart, OutQuart, InOutQuart, InQuint, OutQuint, InOutQuint, InSine, OutSine, InOutSine, InExpo, OutExpo, InOutExpo, InCirc, OutCirc, InOutCirc, InElastic, OutElastic, OutElasticHalf, OutElasticQuarter, InOutElastic, InBack, OutBack, InOutBack, InBounce, OutBounce, InOutBounce, OutPow10, } }