LTDescr.easeInExpo C# (CSharp) Method

easeInExpo() private method

private easeInExpo ( ) : Vector3
return Vector3
    private Vector3 easeInExpo()
    {
        val = Mathf.Pow(2f, 10f * (this.ratioPassed - 1f));
        return new Vector3(this.diff.x * val + this.from.x, this.diff.y * val + this.from.y, this.diff.z * val + this.from.z);
    }
LTDescr