Esempio n. 1
0
 public AnimatorKeyFrame(Type animatorType, Cue cue)
 {
     AnimatorType = animatorType;
     Cue          = cue;
 }
Esempio n. 2
0
 public AnimatorKeyFrame(Type?animatorType, Cue cue, KeySpline?keySpline)
 {
     AnimatorType = animatorType;
     Cue          = cue;
     KeySpline    = keySpline;
 }
Esempio n. 3
0
 public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
 {
     return(Cue.Parse((string)value, culture));
 }
Esempio n. 4
0
 public AnimatorKeyFrame(Type?animatorType, Cue cue)
 {
     AnimatorType = animatorType;
     Cue          = cue;
     KeySpline    = null;
 }