//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(941, "FileAssetSelectParams", 2128)] public class FileAssetSelectParams { [DNAFieldAttribute(2088, "FileSelectParams", 0, "base_params", "FileSelectParams", false, 0)] public FileSelectParams base_params; [DNAFieldAttribute(8, "AssetLibraryReference", 1, "asset_library_ref", "AssetLibraryReference", false, 2088)] public AssetLibraryReference asset_library_ref; [DNAFieldAttribute(2, "short", 2, "asset_catalog_visibility", "short", false, 2096)] public short asset_catalog_visibility; [DNAArrayAttribute(6, "char", 3, "_pad[6]", "System.Char[]", 6, false, 2098)] public char[] _pad = new System.Char[6]; [DNAFieldAttribute(16, "bUUID", 4, "catalog_id", "bUUID", false, 2104)] public bUUID catalog_id; [DNAFieldAttribute(2, "short", 5, "import_type", "short", false, 2120)] public short import_type; [DNAArrayAttribute(6, "char", 6, "_pad2[6]", "System.Char[]", 6, false, 2122)] public char[] _pad2 = new System.Char[6]; public FileAssetSelectParams() { this.base_params = default; this.asset_library_ref = default; this.asset_catalog_visibility = default; this._pad = default; this.catalog_id = default; this.import_type = default; this._pad2 = default; } public FileAssetSelectParams(FileSelectParams base_params, AssetLibraryReference asset_library_ref, short asset_catalog_visibility, char[] _pad, bUUID catalog_id, short import_type, char[] _pad2) { this.base_params = base_params; this.asset_library_ref = asset_library_ref; this.asset_catalog_visibility = asset_catalog_visibility; this._pad = _pad; this.catalog_id = catalog_id; this.import_type = import_type; this._pad2 = _pad2; } } }