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 keyingoverride;
[DNAFieldAttribute(11, "char", "_pad[6]", 1)]
public char[] _pad = new System.Char[6];
public KeyingSet() {
this.ptr_next = default;
this.ptr_prev = default;
this.paths = default;
this.idname = default;
this.name = default;
this.description = default;
this.typeinfo = default;
this.active_path = default;
this.flag = default;
this.keyingflag = default;
this.keyingoverride = default;
this._pad = default;
}
public KeyingSet(KeyingSet ptr_next, KeyingSet ptr_prev, ListBase paths, char[] idname, char[] name, char[] description, char[] typeinfo, int active_path, short flag, short keyingflag, short keyingoverride, char[] _pad) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;