Exemplo n.º 1
0
 /// <summary>
 /// Returns a Tween&lt;T&gt; instance that is configured to animate the named property
 /// </summary>
 public static Tween <T> TweenProperty <T>(this object target, string propertyName, Interpolator <T> interpolator)
 {
     return(TweenNamedProperty <T> .Obtain(target, propertyName, interpolator));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Returns a Tween&lt;T&gt; instance that is configured to animate the named property
 /// </summary>
 public static Tween <T> TweenProperty <T>(this object target, string propertyName)
 {
     return(TweenNamedProperty <T> .Obtain(target, propertyName));
 }