コード例 #1
0
 protected override void setJSON(JObject obj, BaseClassIfc host, SetJsonOptions options)
 {
     base.setJSON(obj, host, options);
     obj["StartPlacement"] = StartPlacement.getJson(this, options);
     obj["SegmentLength"]  = SegmentLength.getJson(this, options);
     obj["ParentCurve"]    = ParentCurve.getJson(this, options);
 }
コード例 #2
0
ファイル: AnimationRoute.cs プロジェクト: Kojo0888/DogeBeats
 public void UpdateManual(NameValueCollection values)
 {
     Name = ManualUpdaterParser.Parse(values["Name"], Name);
     AnimationStartTime = ManualUpdaterParser.Parse(values["AnimationStartTime"], AnimationStartTime);
     StartPlacement.UpdateManual(values);
 }