Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,33 +15,33 @@ namespace BlendFile.DNA {
[DNAClassAttribute(99, "KeyingSet", 1264)]
public class KeyingSet {
[DNAFieldAttribute(0, "KeyingSet", "*next", "KeyingSet", 8, true, 0)]
public KeyingSet ptr_next;
[DNAFieldAttribute(1, "KeyingSet", "*prev", "KeyingSet", 8, true, 8)]
public KeyingSet ptr_prev;
[DNAFieldAttribute(2, "ListBase", "paths", "ListBase", 16, false, 16)]
[DNAFieldAttribute(8, "KeyingSet", 0, "*next", "KeyingSet", true, 0)]
public KeyingSet next;
[DNAFieldAttribute(8, "KeyingSet", 1, "*prev", "KeyingSet", true, 8)]
public KeyingSet prev;
[DNAFieldAttribute(16, "ListBase", 2, "paths", "ListBase", false, 16)]
public ListBase paths;
[DNAFieldAttribute(3, "char", "idname[64]", "System.Char[]", 64, false, 32)]
[DNAFieldAttribute(64, "char", 3, "idname[64]", "System.Char[]", false, 32)]
public char[] idname = new System.Char[64];
[DNAFieldAttribute(4, "char", "name[64]", "System.Char[]", 64, false, 96)]
[DNAFieldAttribute(64, "char", 4, "name[64]", "System.Char[]", false, 96)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(5, "char", "description[1024]", "System.Char[]", 1024, false, 160)]
[DNAFieldAttribute(1024, "char", 5, "description[1024]", "System.Char[]", false, 160)]
public char[] description = new System.Char[1024];
[DNAFieldAttribute(6, "char", "typeinfo[64]", "System.Char[]", 64, false, 1184)]
[DNAFieldAttribute(64, "char", 6, "typeinfo[64]", "System.Char[]", false, 1184)]
public char[] typeinfo = new System.Char[64];
[DNAFieldAttribute(7, "int", "active_path", "int", 4, false, 1248)]
[DNAFieldAttribute(4, "int", 7, "active_path", "int", false, 1248)]
public int active_path;
[DNAFieldAttribute(8, "short", "flag", "short", 2, false, 1252)]
[DNAFieldAttribute(2, "short", 8, "flag", "short", false, 1252)]
public short flag;
[DNAFieldAttribute(9, "short", "keyingflag", "short", 2, false, 1254)]
[DNAFieldAttribute(2, "short", 9, "keyingflag", "short", false, 1254)]
public short keyingflag;
[DNAFieldAttribute(10, "short", "keyingoverride", "short", 2, false, 1256)]
[DNAFieldAttribute(2, "short", 10, "keyingoverride", "short", false, 1256)]
public short keyingoverride;
[DNAFieldAttribute(11, "char", "_pad[6]", "System.Char[]", 6, false, 1258)]
[DNAFieldAttribute(6, "char", 11, "_pad[6]", "System.Char[]", false, 1258)]
public char[] _pad = new System.Char[6];
public KeyingSet() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.paths = default;
this.idname = default;
this.name = default;
@@ -53,9 +53,9 @@ namespace BlendFile.DNA {
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;
public KeyingSet(KeyingSet next, KeyingSet prev, ListBase paths, char[] idname, char[] name, char[] description, char[] typeinfo, int active_path, short flag, short keyingflag, short keyingoverride, char[] _pad) {
this.next = next;
this.prev = prev;
this.paths = paths;
this.idname = idname;
this.name = name;