LTDescr.easeOutElastic C# (CSharp) Method

easeOutElastic() private method

private easeOutElastic ( ) : Vector3
return Vector3
    private Vector3 easeOutElastic()
    {
        return new Vector3(LeanTween.easeOutElastic(this.from.x,this.to.x,this.ratioPassed,this.overshoot,this.period),
            LeanTween.easeOutElastic(this.from.y,this.to.y,this.ratioPassed,this.overshoot,this.period),
            LeanTween.easeOutElastic(this.from.z,this.to.z,this.ratioPassed,this.overshoot,this.period));
    }
LTDescr