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