LTDescr.easeOutSine C# (CSharp) Method

easeOutSine() private method

private easeOutSine ( ) : Vector3
return Vector3
    private Vector3 easeOutSine()
    {
        val = Mathf.Sin(this.ratioPassed * LeanTween.PI_DIV2);
        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