LTDescr.easeOutElastic C# (CSharp) 메소드

easeOutElastic() 개인적인 메소드

private easeOutElastic ( ) : Vector3
리턴 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