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

@@ -31,6 +31,16 @@ namespace BlendFile.DNA {
public int mat_nr;
[DNAFieldAttribute(7, "int", "flag", 4)]
public int flag;
public DashGpencilModifierSegment() {
this.name = default;
this.ptr_dmd = default;
this.dash = default;
this.gap = default;
this.radius = default;
this.opacity = default;
this.mat_nr = default;
this.flag = default;
}
public DashGpencilModifierSegment(char[] name, DashGpencilModifierData ptr_dmd, int dash, int gap, float radius, float opacity, int mat_nr, int flag) {
this.name = name;
this.ptr_dmd = ptr_dmd;