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,53 +15,53 @@ namespace BlendFile.DNA {
[DNAClassAttribute(35, "AssetMetaData", 152)]
public class AssetMetaData {
[DNAFieldAttribute(0, "AssetTypeInfo", "*local_type_info", "AssetTypeInfo", 8, true, 0)]
public AssetTypeInfo ptr_local_type_info;
[DNAFieldAttribute(1, "IDProperty", "*properties", "IDProperty", 8, true, 8)]
public IDProperty ptr_properties;
[DNAFieldAttribute(2, "bUUID", "catalog_id", "bUUID", 16, false, 16)]
[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;
[DNAFieldAttribute(3, "char", "catalog_simple_name[64]", "System.Char[]", 64, false, 32)]
[DNAFieldAttribute(64, "char", 3, "catalog_simple_name[64]", "System.Char[]", false, 32)]
public char[] catalog_simple_name = new System.Char[64];
[DNAFieldAttribute(4, "char", "*author", "char", 8, true, 96)]
public char ptr_author;
[DNAFieldAttribute(5, "char", "*description", "char", 8, true, 104)]
public char ptr_description;
[DNAFieldAttribute(6, "char", "*copyright", "char", 8, true, 112)]
public char ptr_copyright;
[DNAFieldAttribute(7, "char", "*license", "char", 8, true, 120)]
public char ptr_license;
[DNAFieldAttribute(8, "ListBase", "tags", "ListBase", 16, false, 128)]
[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(9, "short", "active_tag", "short", 2, false, 144)]
[DNAFieldAttribute(2, "short", 9, "active_tag", "short", false, 144)]
public short active_tag;
[DNAFieldAttribute(10, "short", "tot_tags", "short", 2, false, 146)]
[DNAFieldAttribute(2, "short", 10, "tot_tags", "short", false, 146)]
public short tot_tags;
[DNAFieldAttribute(11, "char", "_pad[4]", "System.Char[]", 4, false, 148)]
[DNAFieldAttribute(4, "char", 11, "_pad[4]", "System.Char[]", false, 148)]
public char[] _pad = new System.Char[4];
public AssetMetaData() {
this.ptr_local_type_info = default;
this.ptr_properties = default;
this.local_type_info = default;
this.properties = default;
this.catalog_id = default;
this.catalog_simple_name = default;
this.ptr_author = default;
this.ptr_description = default;
this.ptr_copyright = default;
this.ptr_license = 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 ptr_local_type_info, IDProperty ptr_properties, bUUID catalog_id, char[] catalog_simple_name, char ptr_author, char ptr_description, char ptr_copyright, char ptr_license, ListBase tags, short active_tag, short tot_tags, char[] _pad) {
this.ptr_local_type_info = ptr_local_type_info;
this.ptr_properties = ptr_properties;
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.ptr_author = ptr_author;
this.ptr_description = ptr_description;
this.ptr_copyright = ptr_copyright;
this.ptr_license = ptr_license;
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;