Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -35,6 +35,18 @@ namespace BlendFile.DNA {
public rctf view_rect;
[DNAFieldAttribute(9, "rctf", "clip_rect", 16)]
public rctf clip_rect;
public CurveProfile() {
this.path_len = default;
this.segments_len = default;
this.preset = default;
this.ptr_path = default;
this.ptr_table = default;
this.ptr_segments = default;
this.flag = default;
this.changed_timestamp = default;
this.view_rect = default;
this.clip_rect = default;
}
public CurveProfile(short path_len, short segments_len, int preset, CurveProfilePoint ptr_path, CurveProfilePoint ptr_table, CurveProfilePoint ptr_segments, int flag, int changed_timestamp, rctf view_rect, rctf clip_rect) {
this.path_len = path_len;
this.segments_len = segments_len;