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,35 +15,35 @@ namespace BlendFile.DNA {
[DNAClassAttribute(337, "KeyBlock", 184)]
public class KeyBlock {
[DNAFieldAttribute(0, "KeyBlock", "*next", "KeyBlock", 8, true)]
[DNAFieldAttribute(0, "KeyBlock", "*next", "KeyBlock", 8, true, 0)]
public KeyBlock ptr_next;
[DNAFieldAttribute(1, "KeyBlock", "*prev", "KeyBlock", 8, true)]
[DNAFieldAttribute(1, "KeyBlock", "*prev", "KeyBlock", 8, true, 8)]
public KeyBlock ptr_prev;
[DNAFieldAttribute(2, "float", "pos", "float", 4, false)]
[DNAFieldAttribute(2, "float", "pos", "float", 4, false, 16)]
public float pos;
[DNAFieldAttribute(3, "float", "curval", "float", 4, false)]
[DNAFieldAttribute(3, "float", "curval", "float", 4, false, 20)]
public float curval;
[DNAFieldAttribute(4, "short", "type", "short", 2, false)]
[DNAFieldAttribute(4, "short", "type", "short", 2, false, 24)]
public short type;
[DNAFieldAttribute(5, "char", "_pad1[2]", "System.Char[]", 2, false)]
[DNAFieldAttribute(5, "char", "_pad1[2]", "System.Char[]", 2, false, 26)]
public char[] _pad1 = new System.Char[2];
[DNAFieldAttribute(6, "short", "relative", "short", 2, false)]
[DNAFieldAttribute(6, "short", "relative", "short", 2, false, 28)]
public short relative;
[DNAFieldAttribute(7, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(7, "short", "flag", "short", 2, false, 30)]
public short flag;
[DNAFieldAttribute(8, "int", "totelem", "int", 4, false)]
[DNAFieldAttribute(8, "int", "totelem", "int", 4, false, 32)]
public int totelem;
[DNAFieldAttribute(9, "int", "uid", "int", 4, false)]
[DNAFieldAttribute(9, "int", "uid", "int", 4, false, 36)]
public int uid;
[DNAFieldAttribute(10, "void", "*data", "void", 8, true)]
[DNAFieldAttribute(10, "void", "*data", "void", 8, true, 40)]
public object ptr_data;
[DNAFieldAttribute(11, "char", "name[64]", "System.Char[]", 64, false)]
[DNAFieldAttribute(11, "char", "name[64]", "System.Char[]", 64, false, 48)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(12, "char", "vgroup[64]", "System.Char[]", 64, false)]
[DNAFieldAttribute(12, "char", "vgroup[64]", "System.Char[]", 64, false, 112)]
public char[] vgroup = new System.Char[64];
[DNAFieldAttribute(13, "float", "slidermin", "float", 4, false)]
[DNAFieldAttribute(13, "float", "slidermin", "float", 4, false, 176)]
public float slidermin;
[DNAFieldAttribute(14, "float", "slidermax", "float", 4, false)]
[DNAFieldAttribute(14, "float", "slidermax", "float", 4, false, 180)]
public float slidermax;
public KeyBlock() {
this.ptr_next = default;