public Tweener TweenScale(Vector2 endValue, float duration) { return DOTween.To(() => this.scale, x => this.scale = x, endValue, duration) .SetUpdate(true) .SetTarget(this); }