Example #1
0
 protected ReadonlyVariableAnimation(TVariable variable, ReadonlyPropertyFloat duration, InterpolationCurve curve) : base(duration, curve)
 {
     m_variable = variable;
 }
Example #2
0
 protected ValueAnimation(ReadonlyPropertyFloat duration, InterpolationCurve curve)
 {
     m_duration = duration;
     m_curve    = curve;
 }
Example #3
0
 public ReadonlyAnimaitonInt(ReadonlyInt variable, ReadonlyPropertyFloat duration, InterpolationCurve curve) : base(variable, duration, curve)
 {
 }
Example #4
0
 protected PropertyAnimation(TProperty property, ReadonlyPropertyFloat duration, InterpolationCurve curve) : base(duration, curve)
 {
     m_property = property;
 }
Example #5
0
 public PropertyAnimationInt(ReadonlyPropertyInt property, ReadonlyPropertyFloat duration, InterpolationCurve curve) : base(property, duration, curve)
 {
 }
Example #6
0
 protected abstract ReadonlyVariableAnimation<T, TVariable> CreateAnimation(TVariable variable, ReadonlyPropertyFloat duration, InterpolationCurve curve);
Example #7
0
 protected override ReadonlyVariableAnimation <float, ReadonlyFloat> CreateAnimation(ReadonlyFloat variable, ReadonlyPropertyFloat duration, InterpolationCurve curve)
 {
     return(new ReadonlyAnimationFloat(variable, duration, curve));
 }
Example #8
0
 protected override ReadonlyVariableAnimation <int, ReadonlyInt> CreateAnimation(ReadonlyInt variable, ReadonlyPropertyFloat duration, InterpolationCurve curve)
 {
     return(new ReadonlyAnimaitonInt(variable, duration, curve)
     {
         CastType = m_castType
     });
 }
Example #9
0
 public ReadonlyAnimationColor(ReadonlyColor variable, ReadonlyPropertyFloat duration, InterpolationCurve curve) : base(variable, duration, curve)
 {
 }