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;
            }