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,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(791, "PTCacheMem", 112)]
public class PTCacheMem {
[DNAFieldAttribute(0, "PTCacheMem", "*next", "PTCacheMem", 8, true)]
[DNAFieldAttribute(0, "PTCacheMem", "*next", "PTCacheMem", 8, true, 0)]
public PTCacheMem ptr_next;
[DNAFieldAttribute(1, "PTCacheMem", "*prev", "PTCacheMem", 8, true)]
[DNAFieldAttribute(1, "PTCacheMem", "*prev", "PTCacheMem", 8, true, 8)]
public PTCacheMem ptr_prev;
[DNAFieldAttribute(2, "int", "frame", "int", 4, false)]
[DNAFieldAttribute(2, "int", "frame", "int", 4, false, 16)]
public int frame;
[DNAFieldAttribute(3, "int", "totpoint", "int", 4, false)]
[DNAFieldAttribute(3, "int", "totpoint", "int", 4, false, 20)]
public int totpoint;
[DNAFieldAttribute(4, "int", "data_types", "int", 4, false)]
[DNAFieldAttribute(4, "int", "data_types", "int", 4, false, 24)]
public int data_types;
[DNAFieldAttribute(5, "int", "flag", "int", 4, false)]
[DNAFieldAttribute(5, "int", "flag", "int", 4, false, 28)]
public int flag;
[DNAFieldAttribute(6, "void", "*data[8]", "System.Object[]", 64, true)]
[DNAFieldAttribute(6, "void", "*data[8]", "System.Object[]", 64, true, 32)]
public object[] ptr_d = new System.Object[8];
[DNAFieldAttribute(7, "ListBase", "extradata", "ListBase", 16, false)]
[DNAFieldAttribute(7, "ListBase", "extradata", "ListBase", 16, false, 96)]
public ListBase extradata;
public PTCacheMem() {
this.ptr_next = default;