Пример #1
0
 public static CommandDelegate AlphaBy(Graphic graphic, float alpha, double duration, CommandEase ease = null)
 {
     CheckArgumentNonNull(graphic, "graphic");
     return AlphaBy(graphic.ToColorRef(), alpha, duration, ease);
 }
Пример #2
0
 public static CommandDelegate TintTo(Graphic graphic, Color endColor, double duration, CommandEase ease = null)
 {
     CheckArgumentNonNull(graphic, "graphic");
     return TintTo(graphic.ToColorRef(), endColor, duration, ease);
 }