AssemblyCSharp.Ease.QuintEaseOutIn C# (CSharp) Method

QuintEaseOutIn() public static method

Easing equation function for a quintic (t^5) easing in/out: acceleration until halfway, then deceleration.
public static QuintEaseOutIn ( double t, double b, double c, double d ) : double
t double Current time in seconds.
b double Starting value.
c double Final value.
d double Duration of animation.
return double
        public static double QuintEaseOutIn(double t, double b, double c, double d)
        {
            if (t < d / 2)
            {
            return QuintEaseOut(t * 2, b, c / 2, d);
            }
            return QuintEaseIn((t * 2) - d, b + c / 2, c / 2, d);
        }