Files
BlenderSharp/BlendFile/DNA/AssetMetaData.cs
2025-03-12 19:02:40 +01:00

72 lines
3.1 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(35, "AssetMetaData", 152)]
public class AssetMetaData {
[DNAFieldAttribute(8, "AssetTypeInfo", 0, "*local_type_info", "AssetTypeInfo", true, 0)]
public AssetTypeInfo local_type_info;
[DNAFieldAttribute(8, "IDProperty", 1, "*properties", "IDProperty", true, 8)]
public IDProperty properties;
[DNAFieldAttribute(16, "bUUID", 2, "catalog_id", "bUUID", false, 16)]
public bUUID catalog_id;
[DNAArrayAttribute(64, "char", 3, "catalog_simple_name[64]", "System.Char[]", 64, false, 32)]
public char[] catalog_simple_name = new System.Char[64];
[DNAFieldAttribute(8, "char", 4, "*author", "char", true, 96)]
public char author;
[DNAFieldAttribute(8, "char", 5, "*description", "char", true, 104)]
public char description;
[DNAFieldAttribute(8, "char", 6, "*copyright", "char", true, 112)]
public char copyright;
[DNAFieldAttribute(8, "char", 7, "*license", "char", true, 120)]
public char license;
[DNAFieldAttribute(16, "ListBase", 8, "tags", "ListBase", false, 128)]
public ListBase tags;
[DNAFieldAttribute(2, "short", 9, "active_tag", "short", false, 144)]
public short active_tag;
[DNAFieldAttribute(2, "short", 10, "tot_tags", "short", false, 146)]
public short tot_tags;
[DNAArrayAttribute(4, "char", 11, "_pad[4]", "System.Char[]", 4, false, 148)]
public char[] _pad = new System.Char[4];
public AssetMetaData() {
this.local_type_info = default;
this.properties = default;
this.catalog_id = default;
this.catalog_simple_name = default;
this.author = default;
this.description = default;
this.copyright = default;
this.license = default;
this.tags = default;
this.active_tag = default;
this.tot_tags = default;
this._pad = default;
}
public AssetMetaData(AssetTypeInfo local_type_info, IDProperty properties, bUUID catalog_id, char[] catalog_simple_name, char author, char description, char copyright, char license, ListBase tags, short active_tag, short tot_tags, char[] _pad) {
this.local_type_info = local_type_info;
this.properties = properties;
this.catalog_id = catalog_id;
this.catalog_simple_name = catalog_simple_name;
this.author = author;
this.description = description;
this.copyright = copyright;
this.license = license;
this.tags = tags;
this.active_tag = active_tag;
this.tot_tags = tot_tags;
this._pad = _pad;
}
}
}