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 float[] vert_color = new System.Single[4];
[DNAFieldAttribute(9, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
public bGPDcurve_point() {
this.bezt = default;
this.pressure = default;
this.strength = default;
this.point_index = default;
this.flag = default;
this.uv_fac = default;
this.uv_rot = default;
this.uv_fill = default;
this.vert_color = default;
this._pad = default;
}
public bGPDcurve_point(BezTriple bezt, float pressure, float strength, int point_index, int flag, float uv_fac, float uv_rot, float[] uv_fill, float[] vert_color, char[] _pad) {
this.bezt = bezt;
this.pressure = pressure;