Ejemplo n.º 1
0
 public TweenOperation Property <TObject>(TObject target, PropertyAccesser <TObject, TValue> property, float duration)
 {
     return(PropertyController.Prepare(target, property, delta, new TweenOptions(duration)));
 }
Ejemplo n.º 2
0
 public TweenOperation Property(object target, IPropertyAccesser <TValue> property, TweenOptions options)
 {
     return(PropertyController.Prepare(target, property, delta, options));
 }
Ejemplo n.º 3
0
 public TweenOperation Property <TObject>(TObject target, IPropertyAccesser <TObject, TValue> property, TweenOptions options)
 {
     return(PropertyController.Prepare(target, property, _values, options));
 }