LTDescr.easeInOutElastic C# (CSharp) Method

easeInOutElastic() private method

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