public static TweenOperation ScaleToAsync(this Transform transform, ScaleToOptions options)
 {
     return(new To <Vector3>(options.scale).Property(transform, Properties.transform.localScale, options.tweenOptions));
 }
 public static TweenOperation ScaleToAsync(this GameObject gameObject, ScaleToOptions options)
 {
     return(ScaleToAsync(gameObject.transform, options));
 }