Files
BlenderSharp/BlendFile/DNA/AssetShelfSettings.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

49 lines
2.2 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(870, "AssetShelfSettings")]
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;
this.ptr_prev = ptr_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.search_string = search_string;
this.preview_size = preview_size;
this.display_flag = display_flag;
this._pad1 = _pad1;
}
}
}