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 float fac_y1;
[DNAFieldAttribute(7, "float", "fac_y2", 4)]
public float fac_y2;
public NodeTwoXYs() {
this.x1 = default;
this.x2 = default;
this.y1 = default;
this.y2 = default;
this.fac_x1 = default;
this.fac_x2 = default;
this.fac_y1 = default;
this.fac_y2 = default;
}
public NodeTwoXYs(short x1, short x2, short y1, short y2, float fac_x1, float fac_x2, float fac_y1, float fac_y2) {
this.x1 = x1;
this.x2 = x2;