LTDescr.easeOutExpo C# (CSharp) Method

easeOutExpo() private method

private easeOutExpo ( ) : Vector3
return Vector3
    private Vector3 easeOutExpo()
    {
        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