Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

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