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