public static GoTween scaleFrom(this Transform self, float duration, Vector3 endValue, bool isRelative = false)
 {
     return(Go.from(self, duration, new GoTweenConfig().scale(endValue, isRelative)));
 }
 public static GoTween colorFrom(this Material self, float duration, Color endValue, string colorName = "_Color")
 {
     return(Go.from(self, duration, new GoTweenConfig().materialColor(endValue, colorName)));
 }