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,41 +15,41 @@ namespace BlendFile.DNA {
[DNAClassAttribute(870, "AssetShelfSettings", 120)]
public class AssetShelfSettings {
[DNAFieldAttribute(0, "AssetShelfSettings", "*next", "AssetShelfSettings", 8, true, 0)]
public AssetShelfSettings ptr_next;
[DNAFieldAttribute(1, "AssetShelfSettings", "*prev", "AssetShelfSettings", 8, true, 8)]
public AssetShelfSettings ptr_prev;
[DNAFieldAttribute(2, "AssetLibraryReference", "asset_library_reference", "AssetLibraryReference", 8, false, 16)]
[DNAFieldAttribute(8, "AssetShelfSettings", 0, "*next", "AssetShelfSettings", true, 0)]
public AssetShelfSettings next;
[DNAFieldAttribute(8, "AssetShelfSettings", 1, "*prev", "AssetShelfSettings", true, 8)]
public AssetShelfSettings prev;
[DNAFieldAttribute(8, "AssetLibraryReference", 2, "asset_library_reference", "AssetLibraryReference", false, 16)]
public AssetLibraryReference asset_library_reference;
[DNAFieldAttribute(3, "ListBase", "enabled_catalog_paths", "ListBase", 16, false, 24)]
[DNAFieldAttribute(16, "ListBase", 3, "enabled_catalog_paths", "ListBase", false, 24)]
public ListBase enabled_catalog_paths;
[DNAFieldAttribute(4, "char", "*active_catalog_path", "char", 8, true, 40)]
public char ptr_active_catalog_path;
[DNAFieldAttribute(5, "char", "search_string[64]", "System.Char[]", 64, false, 48)]
[DNAFieldAttribute(8, "char", 4, "*active_catalog_path", "char", true, 40)]
public char active_catalog_path;
[DNAFieldAttribute(64, "char", 5, "search_string[64]", "System.Char[]", false, 48)]
public char[] search_string = new System.Char[64];
[DNAFieldAttribute(6, "short", "preview_size", "short", 2, false, 112)]
[DNAFieldAttribute(2, "short", 6, "preview_size", "short", false, 112)]
public short preview_size;
[DNAFieldAttribute(7, "short", "display_flag", "short", 2, false, 114)]
[DNAFieldAttribute(2, "short", 7, "display_flag", "short", false, 114)]
public short display_flag;
[DNAFieldAttribute(8, "char", "_pad1[4]", "System.Char[]", 4, false, 116)]
[DNAFieldAttribute(4, "char", 8, "_pad1[4]", "System.Char[]", false, 116)]
public char[] _pad1 = new System.Char[4];
public AssetShelfSettings() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.asset_library_reference = default;
this.enabled_catalog_paths = default;
this.ptr_active_catalog_path = default;
this.active_catalog_path = default;
this.search_string = default;
this.preview_size = default;
this.display_flag = default;
this._pad1 = default;
}
public AssetShelfSettings(AssetShelfSettings ptr_next, AssetShelfSettings ptr_prev, AssetLibraryReference asset_library_reference, ListBase enabled_catalog_paths, char ptr_active_catalog_path, char[] search_string, short preview_size, short display_flag, char[] _pad1) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public AssetShelfSettings(AssetShelfSettings next, AssetShelfSettings prev, AssetLibraryReference asset_library_reference, ListBase enabled_catalog_paths, char active_catalog_path, char[] search_string, short preview_size, short display_flag, char[] _pad1) {
this.next = next;
this.prev = prev;
this.asset_library_reference = asset_library_reference;
this.enabled_catalog_paths = enabled_catalog_paths;
this.ptr_active_catalog_path = ptr_active_catalog_path;
this.active_catalog_path = active_catalog_path;
this.search_string = search_string;
this.preview_size = preview_size;
this.display_flag = display_flag;