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,57 +15,57 @@ namespace BlendFile.DNA {
[DNAClassAttribute(26, "IDOverrideLibraryPropertyOperation", 64)]
public class IDOverrideLibraryPropertyOperation {
[DNAFieldAttribute(0, "IDOverrideLibraryPropertyOperation", "*next", "IDOverrideLibraryPropertyOperation", 8, true, 0)]
public IDOverrideLibraryPropertyOperation ptr_next;
[DNAFieldAttribute(1, "IDOverrideLibraryPropertyOperation", "*prev", "IDOverrideLibraryPropertyOperation", 8, true, 8)]
public IDOverrideLibraryPropertyOperation ptr_prev;
[DNAFieldAttribute(2, "short", "operation", "short", 2, false, 16)]
[DNAFieldAttribute(8, "IDOverrideLibraryPropertyOperation", 0, "*next", "IDOverrideLibraryPropertyOperation", true, 0)]
public IDOverrideLibraryPropertyOperation next;
[DNAFieldAttribute(8, "IDOverrideLibraryPropertyOperation", 1, "*prev", "IDOverrideLibraryPropertyOperation", true, 8)]
public IDOverrideLibraryPropertyOperation prev;
[DNAFieldAttribute(2, "short", 2, "operation", "short", false, 16)]
public short operation;
[DNAFieldAttribute(3, "short", "flag", "short", 2, false, 18)]
[DNAFieldAttribute(2, "short", 3, "flag", "short", false, 18)]
public short flag;
[DNAFieldAttribute(4, "short", "tag", "short", 2, false, 20)]
[DNAFieldAttribute(2, "short", 4, "tag", "short", false, 20)]
public short tag;
[DNAFieldAttribute(5, "char", "_pad0[2]", "System.Char[]", 2, false, 22)]
[DNAFieldAttribute(2, "char", 5, "_pad0[2]", "System.Char[]", false, 22)]
public char[] _pad0 = new System.Char[2];
[DNAFieldAttribute(6, "char", "*subitem_reference_name", "char", 8, true, 24)]
public char ptr_subitem_reference_name;
[DNAFieldAttribute(7, "char", "*subitem_local_name", "char", 8, true, 32)]
public char ptr_subitem_local_name;
[DNAFieldAttribute(8, "int", "subitem_reference_index", "int", 4, false, 40)]
[DNAFieldAttribute(8, "char", 6, "*subitem_reference_name", "char", true, 24)]
public char subitem_reference_name;
[DNAFieldAttribute(8, "char", 7, "*subitem_local_name", "char", true, 32)]
public char subitem_local_name;
[DNAFieldAttribute(4, "int", 8, "subitem_reference_index", "int", false, 40)]
public int subitem_reference_index;
[DNAFieldAttribute(9, "int", "subitem_local_index", "int", 4, false, 44)]
[DNAFieldAttribute(4, "int", 9, "subitem_local_index", "int", false, 44)]
public int subitem_local_index;
[DNAFieldAttribute(10, "ID", "*subitem_reference_id", "ID", 8, true, 48)]
public ID ptr_subitem_reference_id;
[DNAFieldAttribute(11, "ID", "*subitem_local_id", "ID", 8, true, 56)]
public ID ptr_subitem_local_id;
[DNAFieldAttribute(8, "ID", 10, "*subitem_reference_id", "ID", true, 48)]
public ID subitem_reference_id;
[DNAFieldAttribute(8, "ID", 11, "*subitem_local_id", "ID", true, 56)]
public ID subitem_local_id;
public IDOverrideLibraryPropertyOperation() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.operation = default;
this.flag = default;
this.tag = default;
this._pad0 = default;
this.ptr_subitem_reference_name = default;
this.ptr_subitem_local_name = default;
this.subitem_reference_name = default;
this.subitem_local_name = default;
this.subitem_reference_index = default;
this.subitem_local_index = default;
this.ptr_subitem_reference_id = default;
this.ptr_subitem_local_id = default;
this.subitem_reference_id = default;
this.subitem_local_id = default;
}
public IDOverrideLibraryPropertyOperation(IDOverrideLibraryPropertyOperation ptr_next, IDOverrideLibraryPropertyOperation ptr_prev, short operation, short flag, short tag, char[] _pad0, char ptr_subitem_reference_name, char ptr_subitem_local_name, int subitem_reference_index, int subitem_local_index, ID ptr_subitem_reference_id, ID ptr_subitem_local_id) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public IDOverrideLibraryPropertyOperation(IDOverrideLibraryPropertyOperation next, IDOverrideLibraryPropertyOperation prev, short operation, short flag, short tag, char[] _pad0, char subitem_reference_name, char subitem_local_name, int subitem_reference_index, int subitem_local_index, ID subitem_reference_id, ID subitem_local_id) {
this.next = next;
this.prev = prev;
this.operation = operation;
this.flag = flag;
this.tag = tag;
this._pad0 = _pad0;
this.ptr_subitem_reference_name = ptr_subitem_reference_name;
this.ptr_subitem_local_name = ptr_subitem_local_name;
this.subitem_reference_name = subitem_reference_name;
this.subitem_local_name = subitem_local_name;
this.subitem_reference_index = subitem_reference_index;
this.subitem_local_index = subitem_local_index;
this.ptr_subitem_reference_id = ptr_subitem_reference_id;
this.ptr_subitem_local_id = ptr_subitem_local_id;
this.subitem_reference_id = subitem_reference_id;
this.subitem_local_id = subitem_local_id;
}
}
}