iTween.easeInCubic C# (CSharp) Method

easeInCubic() private method

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