Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,16 +11,26 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class AssetShelfSettings {
[DNAFieldAttribute(0, "AssetShelfSettings", "*next", 120)]
public AssetShelfSettings ptr_next;
[DNAFieldAttribute(1, "AssetShelfSettings", "*prev", 120)]
public AssetShelfSettings ptr_prev;
[DNAFieldAttribute(2, "AssetLibraryReference", "asset_library_reference", 8)]
public AssetLibraryReference asset_library_reference;
[DNAFieldAttribute(3, "ListBase", "enabled_catalog_paths", 16)]
public ListBase enabled_catalog_paths;
[DNAFieldAttribute(4, "char", "*active_catalog_path", 1)]
public char ptr_active_catalog_path;
[DNAFieldAttribute(5, "char", "search_string[64]", 1)]
public char[] search_string = new System.Char[64];
[DNAFieldAttribute(6, "short", "preview_size", 2)]
public short preview_size;
[DNAFieldAttribute(7, "short", "display_flag", 2)]
public short display_flag;
[DNAFieldAttribute(8, "char", "_pad1[4]", 1)]
public char[] _pad1 = new System.Char[4];
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;