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

@@ -39,6 +39,20 @@ namespace BlendFile.DNA {
public short boundary_smooth;
[DNAFieldAttribute(11, "char", "_pad2[2]", 1)]
public char[] _pad2 = new System.Char[2];
public MultiresModifierData() {
this.modifier = default;
this.lvl = default;
this.sculptlvl = default;
this.renderlvl = default;
this.totlvl = default;
this.simple = default;
this.flags = default;
this._pad = default;
this.quality = default;
this.uv_smooth = default;
this.boundary_smooth = default;
this._pad2 = default;
}
public MultiresModifierData(ModifierData modifier, char lvl, char sculptlvl, char renderlvl, char totlvl, char simple, char flags, char[] _pad, short quality, short uv_smooth, short boundary_smooth, char[] _pad2) {
this.modifier = modifier;
this.lvl = lvl;