コード例 #1
0
ファイル: AnimatorKeyFrame.cs プロジェクト: x2bool/Avalonia
 public AnimatorKeyFrame(Type animatorType, Cue cue)
 {
     AnimatorType = animatorType;
     Cue          = cue;
 }
コード例 #2
0
 public AnimatorKeyFrame(Type?animatorType, Cue cue, KeySpline?keySpline)
 {
     AnimatorType = animatorType;
     Cue          = cue;
     KeySpline    = keySpline;
 }
コード例 #3
0
 public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
 {
     return(Cue.Parse((string)value, culture));
 }
コード例 #4
0
 public AnimatorKeyFrame(Type?animatorType, Cue cue)
 {
     AnimatorType = animatorType;
     Cue          = cue;
     KeySpline    = null;
 }