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,31 +15,31 @@ namespace BlendFile.DNA {
[DNAClassAttribute(25, "IDProperty", 136)]
public class IDProperty {
[DNAFieldAttribute(0, "IDProperty", "*next", "IDProperty", 8, true, 0)]
public IDProperty ptr_next;
[DNAFieldAttribute(1, "IDProperty", "*prev", "IDProperty", 8, true, 8)]
public IDProperty ptr_prev;
[DNAFieldAttribute(2, "char", "type", "char", 1, false, 16)]
[DNAFieldAttribute(8, "IDProperty", 0, "*next", "IDProperty", true, 0)]
public IDProperty next;
[DNAFieldAttribute(8, "IDProperty", 1, "*prev", "IDProperty", true, 8)]
public IDProperty prev;
[DNAFieldAttribute(1, "char", 2, "type", "char", false, 16)]
public char type;
[DNAFieldAttribute(3, "char", "subtype", "char", 1, false, 17)]
[DNAFieldAttribute(1, "char", 3, "subtype", "char", false, 17)]
public char subtype;
[DNAFieldAttribute(4, "short", "flag", "short", 2, false, 18)]
[DNAFieldAttribute(2, "short", 4, "flag", "short", false, 18)]
public short flag;
[DNAFieldAttribute(5, "char", "name[64]", "System.Char[]", 64, false, 20)]
[DNAFieldAttribute(64, "char", 5, "name[64]", "System.Char[]", false, 20)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(6, "char", "_pad0[4]", "System.Char[]", 4, false, 84)]
[DNAFieldAttribute(4, "char", 6, "_pad0[4]", "System.Char[]", false, 84)]
public char[] _pad0 = new System.Char[4];
[DNAFieldAttribute(7, "IDPropertyData", "data", "IDPropertyData", 32, false, 88)]
[DNAFieldAttribute(32, "IDPropertyData", 7, "data", "IDPropertyData", false, 88)]
public IDPropertyData data;
[DNAFieldAttribute(8, "int", "len", "int", 4, false, 120)]
[DNAFieldAttribute(4, "int", 8, "len", "int", false, 120)]
public int len;
[DNAFieldAttribute(9, "int", "totallen", "int", 4, false, 124)]
[DNAFieldAttribute(4, "int", 9, "totallen", "int", false, 124)]
public int totallen;
[DNAFieldAttribute(10, "IDPropertyUIData", "*ui_data", "IDPropertyUIData", 8, true, 128)]
public IDPropertyUIData ptr_ui_data;
[DNAFieldAttribute(8, "IDPropertyUIData", 10, "*ui_data", "IDPropertyUIData", true, 128)]
public IDPropertyUIData ui_data;
public IDProperty() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.type = default;
this.subtype = default;
this.flag = default;
@@ -48,11 +48,11 @@ namespace BlendFile.DNA {
this.data = default;
this.len = default;
this.totallen = default;
this.ptr_ui_data = default;
this.ui_data = default;
}
public IDProperty(IDProperty ptr_next, IDProperty ptr_prev, char type, char subtype, short flag, char[] name, char[] _pad0, IDPropertyData data, int len, int totallen, IDPropertyUIData ptr_ui_data) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public IDProperty(IDProperty next, IDProperty prev, char type, char subtype, short flag, char[] name, char[] _pad0, IDPropertyData data, int len, int totallen, IDPropertyUIData ui_data) {
this.next = next;
this.prev = prev;
this.type = type;
this.subtype = subtype;
this.flag = flag;
@@ -61,7 +61,7 @@ namespace BlendFile.DNA {
this.data = data;
this.len = len;
this.totallen = totallen;
this.ptr_ui_data = ptr_ui_data;
this.ui_data = ui_data;
}
}
}