LTDescr.easeOutElastic C# (CSharp) Méthode

easeOutElastic() private méthode

private easeOutElastic ( ) : Vector3
Résultat 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