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

@@ -45,6 +45,23 @@ namespace BlendFile.DNA {
public float ctime;
[DNAFieldAttribute(14, "int", "uidgen", 4)]
public int uidgen;
public Key() {
this.id = default;
this.ptr_adt = default;
this.ptr_refkey = default;
this.elemstr = default;
this.elemsize = default;
this._pad = default;
this.block = default;
this.ptr_ipo = default;
this.ptr_from = default;
this.totkey = default;
this.flag = default;
this.type = default;
this._pad2 = default;
this.ctime = default;
this.uidgen = default;
}
public Key(ID id, AnimData ptr_adt, KeyBlock ptr_refkey, char[] elemstr, int elemsize, char[] _pad, ListBase block, Ipo ptr_ipo, ID ptr_from, int totkey, short flag, char type, char _pad2, float ctime, int uidgen) {
this.id = id;
this.ptr_adt = ptr_adt;