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