LTDescr.easeInElastic C# (CSharp) Method

easeInElastic() private method

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