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,35 +15,35 @@ namespace BlendFile.DNA {
[DNAClassAttribute(29, "IDOverrideLibrary", 56)]
public class IDOverrideLibrary {
[DNAFieldAttribute(0, "ID", "*reference", "ID", 8, true, 0)]
public ID ptr_reference;
[DNAFieldAttribute(1, "ListBase", "properties", "ListBase", 16, false, 8)]
[DNAFieldAttribute(8, "ID", 0, "*reference", "ID", true, 0)]
public ID reference;
[DNAFieldAttribute(16, "ListBase", 1, "properties", "ListBase", false, 8)]
public ListBase properties;
[DNAFieldAttribute(2, "ID", "*hierarchy_root", "ID", 8, true, 24)]
public ID ptr_hierarchy_root;
[DNAFieldAttribute(3, "ID", "*storage", "ID", 8, true, 32)]
public ID ptr_storage;
[DNAFieldAttribute(4, "IDOverrideLibraryRuntime", "*runtime", "IDOverrideLibraryRuntime", 8, true, 40)]
public IDOverrideLibraryRuntime ptr_runtime;
[DNAFieldAttribute(5, "int", "flag", "int", 4, false, 48)]
[DNAFieldAttribute(8, "ID", 2, "*hierarchy_root", "ID", true, 24)]
public ID hierarchy_root;
[DNAFieldAttribute(8, "ID", 3, "*storage", "ID", true, 32)]
public ID storage;
[DNAFieldAttribute(8, "IDOverrideLibraryRuntime", 4, "*runtime", "IDOverrideLibraryRuntime", true, 40)]
public IDOverrideLibraryRuntime runtime;
[DNAFieldAttribute(4, "int", 5, "flag", "int", false, 48)]
public int flag;
[DNAFieldAttribute(6, "char", "_pad_1[4]", "System.Char[]", 4, false, 52)]
[DNAFieldAttribute(4, "char", 6, "_pad_1[4]", "System.Char[]", false, 52)]
public char[] _pad_1 = new System.Char[4];
public IDOverrideLibrary() {
this.ptr_reference = default;
this.reference = default;
this.properties = default;
this.ptr_hierarchy_root = default;
this.ptr_storage = default;
this.ptr_runtime = default;
this.hierarchy_root = default;
this.storage = default;
this.runtime = default;
this.flag = default;
this._pad_1 = default;
}
public IDOverrideLibrary(ID ptr_reference, ListBase properties, ID ptr_hierarchy_root, ID ptr_storage, IDOverrideLibraryRuntime ptr_runtime, int flag, char[] _pad_1) {
this.ptr_reference = ptr_reference;
public IDOverrideLibrary(ID reference, ListBase properties, ID hierarchy_root, ID storage, IDOverrideLibraryRuntime runtime, int flag, char[] _pad_1) {
this.reference = reference;
this.properties = properties;
this.ptr_hierarchy_root = ptr_hierarchy_root;
this.ptr_storage = ptr_storage;
this.ptr_runtime = ptr_runtime;
this.hierarchy_root = hierarchy_root;
this.storage = storage;
this.runtime = runtime;
this.flag = flag;
this._pad_1 = _pad_1;
}