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 short mat_ofs;
[DNAFieldAttribute(8, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
public WireframeModifierData() {
this.modifier = default;
this.defgrp_name = default;
this.offset = default;
this.offset_fac = default;
this.offset_fac_vg = default;
this.crease_weight = default;
this.flag = default;
this.mat_ofs = default;
this._pad = default;
}
public WireframeModifierData(ModifierData modifier, char[] defgrp_name, float offset, float offset_fac, float offset_fac_vg, float crease_weight, short flag, short mat_ofs, char[] _pad) {
this.modifier = modifier;
this.defgrp_name = defgrp_name;