示例#1
0
 public void SetParameters(float a, float b, float length, AnimationSchemes scheme, bool repeat)
 {
     A = a;
     B = b;
     AnimationLength = length;
     Repeat          = repeat;
     Scheme          = scheme;
 }
示例#2
0
 public AnimatingPropertyComponent(float a, float b, float length, AnimationSchemes scheme, bool repeat = false)
 {
     SetParameters(a, b, length, scheme, repeat);
 }