Exemple #1
0
 public static Tween TweenScaleY(this ISprite sprite, float toScaleY, float timeInSeconds, Func <float, float> easing = null)
 {
     return(Tween.Run(sprite.ScaleY, toScaleY, y => sprite.ScaleBy(sprite.ScaleX, y), timeInSeconds, easing));
 }