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 short type;
[DNAFieldAttribute(9, "char", "_pad[6]", 1)]
public char[] _pad = new System.Char[6];
public SubdivGpencilModifierData() {
this.modifier = default;
this.ptr_material = default;
this.layername = default;
this.materialname = default;
this.pass_index = default;
this.flag = default;
this.level = default;
this.layer_pass = default;
this.type = default;
this._pad = default;
}
public SubdivGpencilModifierData(GpencilModifierData modifier, Material ptr_material, char[] layername, char[] materialname, int pass_index, int flag, int level, int layer_pass, short type, char[] _pad) {
this.modifier = modifier;
this.ptr_material = ptr_material;