iTween.easeOutCubic C# (CSharp) Method

easeOutCubic() private method

private easeOutCubic ( float start, float end, float value ) : float
start float
end float
value float
return float
    private float easeOutCubic(float start, float end, float value)
    {
        value--;
        end -= start;
        return end * (value * value * value + 1) + start;
    }
iTween