FairyGUI.ScrollPane.ThrowTween.easeOutCubic C# (CSharp) Метод

easeOutCubic() статический приватный Метод

static private easeOutCubic ( float t, float b, float c, float d ) : float
t float
b float
c float
d float
Результат float
            static float easeOutCubic(float t, float b, float c, float d)
            {
                return c * ((t = t / d - 1) * t * t + 1) + b;
            }