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,52 +15,52 @@ namespace BlendFile.DNA {
[DNAClassAttribute(27, "ID", 208)]
public class ID {
[DNAFieldAttribute(0, "void", "*next", "void", 8, true, 0)]
public object ptr_next;
[DNAFieldAttribute(1, "void", "*prev", "void", 8, true, 8)]
public object ptr_prev;
[DNAFieldAttribute(2, "ID", "*newid", "ID", 8, true, 16)]
public ID ptr_newid;
[DNAFieldAttribute(3, "Library", "*lib", "Library", 8, true, 24)]
public Library ptr_lib;
[DNAFieldAttribute(4, "AssetMetaData", "*asset_data", "AssetMetaData", 8, true, 32)]
public AssetMetaData ptr_asset_data;
[DNAFieldAttribute(5, "char", "name[66]", "System.Char[]", 66, false, 40)]
[DNAFieldAttribute(8, "void", 0, "*next", "void", true, 0)]
public object next;
[DNAFieldAttribute(8, "void", 1, "*prev", "void", true, 8)]
public object prev;
[DNAFieldAttribute(8, "ID", 2, "*newid", "ID", true, 16)]
public ID newid;
[DNAFieldAttribute(8, "Library", 3, "*lib", "Library", true, 24)]
public Library lib;
[DNAFieldAttribute(8, "AssetMetaData", 4, "*asset_data", "AssetMetaData", true, 32)]
public AssetMetaData asset_data;
[DNAFieldAttribute(66, "char", 5, "name[66]", "System.Char[]", false, 40)]
public char[] name = new System.Char[66];
[DNAFieldAttribute(6, "short", "flag", "short", 2, false, 106)]
[DNAFieldAttribute(2, "short", 6, "flag", "short", false, 106)]
public short flag;
[DNAFieldAttribute(7, "int", "tag", "int", 4, false, 108)]
[DNAFieldAttribute(4, "int", 7, "tag", "int", false, 108)]
public int tag;
[DNAFieldAttribute(8, "int", "us", "int", 4, false, 112)]
[DNAFieldAttribute(4, "int", 8, "us", "int", false, 112)]
public int us;
[DNAFieldAttribute(9, "int", "icon_id", "int", 4, false, 116)]
[DNAFieldAttribute(4, "int", 9, "icon_id", "int", false, 116)]
public int icon_id;
[DNAFieldAttribute(10, "int", "recalc", "int", 4, false, 120)]
[DNAFieldAttribute(4, "int", 10, "recalc", "int", false, 120)]
public int recalc;
[DNAFieldAttribute(11, "int", "recalc_up_to_undo_push", "int", 4, false, 124)]
[DNAFieldAttribute(4, "int", 11, "recalc_up_to_undo_push", "int", false, 124)]
public int recalc_up_to_undo_push;
[DNAFieldAttribute(12, "int", "recalc_after_undo_push", "int", 4, false, 128)]
[DNAFieldAttribute(4, "int", 12, "recalc_after_undo_push", "int", false, 128)]
public int recalc_after_undo_push;
[DNAFieldAttribute(13, "int", "session_uid", "int", 4, false, 132)]
[DNAFieldAttribute(4, "int", 13, "session_uid", "int", false, 132)]
public int session_uid;
[DNAFieldAttribute(14, "IDProperty", "*properties", "IDProperty", 8, true, 136)]
public IDProperty ptr_properties;
[DNAFieldAttribute(15, "IDOverrideLibrary", "*override_library", "IDOverrideLibrary", 8, true, 144)]
public IDOverrideLibrary ptr_override_library;
[DNAFieldAttribute(16, "ID", "*orig_id", "ID", 8, true, 152)]
public ID ptr_orig_id;
[DNAFieldAttribute(17, "void", "*py_instance", "void", 8, true, 160)]
public object ptr_py_instance;
[DNAFieldAttribute(18, "LibraryWeakReference", "*library_weak_reference", "LibraryWeakReference", 8, true, 168)]
public LibraryWeakReference ptr_library_weak_reference;
[DNAFieldAttribute(19, "ID_Runtime", "runtime", "ID_Runtime", 32, false, 176)]
[DNAFieldAttribute(8, "IDProperty", 14, "*properties", "IDProperty", true, 136)]
public IDProperty properties;
[DNAFieldAttribute(8, "IDOverrideLibrary", 15, "*override_library", "IDOverrideLibrary", true, 144)]
public IDOverrideLibrary override_library;
[DNAFieldAttribute(8, "ID", 16, "*orig_id", "ID", true, 152)]
public ID orig_id;
[DNAFieldAttribute(8, "void", 17, "*py_instance", "void", true, 160)]
public object py_instance;
[DNAFieldAttribute(8, "LibraryWeakReference", 18, "*library_weak_reference", "LibraryWeakReference", true, 168)]
public LibraryWeakReference library_weak_reference;
[DNAFieldAttribute(32, "ID_Runtime", 19, "runtime", "ID_Runtime", false, 176)]
public ID_Runtime runtime;
public ID() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_newid = default;
this.ptr_lib = default;
this.ptr_asset_data = default;
this.next = default;
this.prev = default;
this.newid = default;
this.lib = default;
this.asset_data = default;
this.name = default;
this.flag = default;
this.tag = default;
@@ -70,19 +70,19 @@ namespace BlendFile.DNA {
this.recalc_up_to_undo_push = default;
this.recalc_after_undo_push = default;
this.session_uid = default;
this.ptr_properties = default;
this.ptr_override_library = default;
this.ptr_orig_id = default;
this.ptr_py_instance = default;
this.ptr_library_weak_reference = default;
this.properties = default;
this.override_library = default;
this.orig_id = default;
this.py_instance = default;
this.library_weak_reference = default;
this.runtime = default;
}
public ID(
object ptr_next,
object ptr_prev,
ID ptr_newid,
Library ptr_lib,
AssetMetaData ptr_asset_data,
object next,
object prev,
ID newid,
Library lib,
AssetMetaData asset_data,
char[] name,
short flag,
int tag,
@@ -92,17 +92,17 @@ namespace BlendFile.DNA {
int recalc_up_to_undo_push,
int recalc_after_undo_push,
int session_uid,
IDProperty ptr_properties,
IDOverrideLibrary ptr_override_library,
ID ptr_orig_id,
object ptr_py_instance,
LibraryWeakReference ptr_library_weak_reference,
IDProperty properties,
IDOverrideLibrary override_library,
ID orig_id,
object py_instance,
LibraryWeakReference library_weak_reference,
ID_Runtime runtime) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_newid = ptr_newid;
this.ptr_lib = ptr_lib;
this.ptr_asset_data = ptr_asset_data;
this.next = next;
this.prev = prev;
this.newid = newid;
this.lib = lib;
this.asset_data = asset_data;
this.name = name;
this.flag = flag;
this.tag = tag;
@@ -112,11 +112,11 @@ namespace BlendFile.DNA {
this.recalc_up_to_undo_push = recalc_up_to_undo_push;
this.recalc_after_undo_push = recalc_after_undo_push;
this.session_uid = session_uid;
this.ptr_properties = ptr_properties;
this.ptr_override_library = ptr_override_library;
this.ptr_orig_id = ptr_orig_id;
this.ptr_py_instance = ptr_py_instance;
this.ptr_library_weak_reference = ptr_library_weak_reference;
this.properties = properties;
this.override_library = override_library;
this.orig_id = orig_id;
this.py_instance = py_instance;
this.library_weak_reference = library_weak_reference;
this.runtime = runtime;
}
}