コード例 #1
0
ファイル: FCurves.cs プロジェクト: kou-yeung/Effekseer
        public void SetFCurveKey()
        {
            editedFCurveKey = null;
            cb_fcurveInterpolation.SetBinding(null);
            txt_frame.Reload();
            txt_value.Reload();
            txt_offset_max.Reload();
            txt_offset_min.Reload();

            txt_left_x.Reload();
            txt_left_y.Reload();
            txt_right_x.Reload();
            txt_right_y.Reload();
        }
コード例 #2
0
ファイル: FCurves.cs プロジェクト: kou-yeung/Effekseer
        public void SetFCurveKey(Data.Value.IFCurveKey fcurve)
        {
            editedFCurveKey = fcurve;
            cb_fcurveInterpolation.SetBinding(fcurve.InterpolationType);

            txt_frame.Reload();
            txt_value.Reload();
            txt_offset_max.Reload();
            txt_offset_min.Reload();

            txt_left_x.Reload();
            txt_left_y.Reload();
            txt_right_x.Reload();
            txt_right_y.Reload();
        }
コード例 #3
0
ファイル: FCurves.cs プロジェクト: kou-yeung/Effekseer
 public SelectablePoint(Data.Value.IFCurve fcurve, Data.Value.IFCurveKey key, PointType type)
 {
     FCurve = fcurve;
     Key = key;
     Type = type;
 }