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

@@ -41,6 +41,21 @@ namespace BlendFile.DNA {
public float sharp_min;
[DNAFieldAttribute(12, "float", "sharp_max", 4)]
public float sharp_max;
public MeshStatVis() {
this.type = default;
this._pad1 = default;
this.overhang_axis = default;
this.overhang_min = default;
this.overhang_max = default;
this.thickness_min = default;
this.thickness_max = default;
this.thickness_samples = default;
this._pad2 = default;
this.distort_min = default;
this.distort_max = default;
this.sharp_min = default;
this.sharp_max = default;
}
public MeshStatVis(char type, char[] _pad1, char overhang_axis, float overhang_min, float overhang_max, float thickness_min, float thickness_max, char thickness_samples, char[] _pad2, float distort_min, float distort_max, float sharp_min, float sharp_max) {
this.type = type;
this._pad1 = _pad1;