예제 #1
0
 public Animation(double init, double end, AnimatableProperty prop, double duration, Func<double, float, float, double, float> easing) : base(duration)
 {
     this.initValue = init;
     this.endValue = end;
     this.property = prop;
     this.easing = easing;
 }
예제 #2
0
 public void SetValue(AnimatableProperty property, Object value)
 {
     property.Set(value);
 }
예제 #3
0
 public object GetValue(AnimatableProperty prop)
 {
     return prop.Get();
 }