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 int flag;
[DNAFieldAttribute(9, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
public Mask() {
this.id = default;
this.ptr_adt = default;
this.drawdata = default;
this.masklayers = default;
this.masklay_act = default;
this.masklay_tot = default;
this.sfra = default;
this.efra = default;
this.flag = default;
this._pad = default;
}
public Mask(ID id, AnimData ptr_adt, DrawDataList drawdata, ListBase masklayers, int masklay_act, int masklay_tot, int sfra, int efra, int flag, char[] _pad) {
this.id = id;
this.ptr_adt = ptr_adt;