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

@@ -33,6 +33,17 @@ namespace BlendFile.DNA {
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(8, "CurveProfile", "*profile", 72)]
public CurveProfile ptr_profile;
public CurveProfilePoint() {
this.x = default;
this.y = default;
this.flag = default;
this.h1 = default;
this.h2 = default;
this.h1_loc = default;
this.h2_loc = default;
this._pad = default;
this.ptr_profile = default;
}
public CurveProfilePoint(float x, float y, short flag, char h1, char h2, float[] h1_loc, float[] h2_loc, char[] _pad, CurveProfile ptr_profile) {
this.x = x;
this.y = y;