Esempio n. 1
0
            public static TweenOperation Prepare(object target, IPropertyAccesser <TValue> property, TValue delta, TweenOptions options)
            {
                var state = new State()
                {
                    delta    = delta,
                    target   = target,
                    property = property
                };

                return(TweenAction <State> .Prepare(state, options));
            }
Esempio n. 2
0
 public TweenOperation Property <TObject>(TObject target, IPropertyAccesser <TObject, TValue> property, float duration)
 {
     return(Property(target, property, new TweenOptions(duration)));
 }
Esempio n. 3
0
 public TweenOperation Property(object target, IPropertyAccesser <TValue> property, TweenOptions options)
 {
     return(PropertyController.Prepare(target, property, delta, options));
 }
Esempio n. 4
0
 public TweenOperation Property <TObject>(TObject target, IPropertyAccesser <TObject, TValue> property, TweenOptions options)
 {
     return(PropertyController.Prepare(target, property, _values, options));
 }