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

@@ -27,6 +27,14 @@ namespace BlendFile.DNA {
public int seg_mode;
[DNAFieldAttribute(5, "int", "seg_repeat", 4)]
public int seg_repeat;
public TimeGpencilModifierSegment() {
this.name = default;
this.ptr_gpmd = default;
this.seg_start = default;
this.seg_end = default;
this.seg_mode = default;
this.seg_repeat = default;
}
public TimeGpencilModifierSegment(char[] name, TimeGpencilModifierData ptr_gpmd, int seg_start, int seg_end, int seg_mode, int seg_repeat) {
this.name = name;
this.ptr_gpmd = ptr_gpmd;