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,47 +15,47 @@ namespace BlendFile.DNA {
[DNAClassAttribute(336, "IpoCurve", 112)]
public class IpoCurve {
[DNAFieldAttribute(0, "IpoCurve", "*next", "IpoCurve", 8, true)]
[DNAFieldAttribute(0, "IpoCurve", "*next", "IpoCurve", 8, true, 0)]
public IpoCurve ptr_next;
[DNAFieldAttribute(1, "IpoCurve", "*prev", "IpoCurve", 8, true)]
[DNAFieldAttribute(1, "IpoCurve", "*prev", "IpoCurve", 8, true, 8)]
public IpoCurve ptr_prev;
[DNAFieldAttribute(2, "BPoint", "*bp", "BPoint", 8, true)]
[DNAFieldAttribute(2, "BPoint", "*bp", "BPoint", 8, true, 16)]
public BPoint ptr_bp;
[DNAFieldAttribute(3, "BezTriple", "*bezt", "BezTriple", 8, true)]
[DNAFieldAttribute(3, "BezTriple", "*bezt", "BezTriple", 8, true, 24)]
public BezTriple ptr_bezt;
[DNAFieldAttribute(4, "rctf", "maxrct", "rctf", 16, false)]
[DNAFieldAttribute(4, "rctf", "maxrct", "rctf", 16, false, 32)]
public rctf maxrct;
[DNAFieldAttribute(5, "rctf", "totrct", "rctf", 16, false)]
[DNAFieldAttribute(5, "rctf", "totrct", "rctf", 16, false, 48)]
public rctf totrct;
[DNAFieldAttribute(6, "short", "blocktype", "short", 2, false)]
[DNAFieldAttribute(6, "short", "blocktype", "short", 2, false, 64)]
public short blocktype;
[DNAFieldAttribute(7, "short", "adrcode", "short", 2, false)]
[DNAFieldAttribute(7, "short", "adrcode", "short", 2, false, 66)]
public short adrcode;
[DNAFieldAttribute(8, "short", "vartype", "short", 2, false)]
[DNAFieldAttribute(8, "short", "vartype", "short", 2, false, 68)]
public short vartype;
[DNAFieldAttribute(9, "short", "totvert", "short", 2, false)]
[DNAFieldAttribute(9, "short", "totvert", "short", 2, false, 70)]
public short totvert;
[DNAFieldAttribute(10, "short", "ipo", "short", 2, false)]
[DNAFieldAttribute(10, "short", "ipo", "short", 2, false, 72)]
public short ipo;
[DNAFieldAttribute(11, "short", "extrap", "short", 2, false)]
[DNAFieldAttribute(11, "short", "extrap", "short", 2, false, 74)]
public short extrap;
[DNAFieldAttribute(12, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(12, "short", "flag", "short", 2, false, 76)]
public short flag;
[DNAFieldAttribute(13, "char", "_pad0[2]", "System.Char[]", 2, false)]
[DNAFieldAttribute(13, "char", "_pad0[2]", "System.Char[]", 2, false, 78)]
public char[] _pad0 = new System.Char[2];
[DNAFieldAttribute(14, "float", "ymin", "float", 4, false)]
[DNAFieldAttribute(14, "float", "ymin", "float", 4, false, 80)]
public float ymin;
[DNAFieldAttribute(15, "float", "ymax", "float", 4, false)]
[DNAFieldAttribute(15, "float", "ymax", "float", 4, false, 84)]
public float ymax;
[DNAFieldAttribute(16, "int", "bitmask", "int", 4, false)]
[DNAFieldAttribute(16, "int", "bitmask", "int", 4, false, 88)]
public int bitmask;
[DNAFieldAttribute(17, "float", "slide_min", "float", 4, false)]
[DNAFieldAttribute(17, "float", "slide_min", "float", 4, false, 92)]
public float slide_min;
[DNAFieldAttribute(18, "float", "slide_max", "float", 4, false)]
[DNAFieldAttribute(18, "float", "slide_max", "float", 4, false, 96)]
public float slide_max;
[DNAFieldAttribute(19, "float", "curval", "float", 4, false)]
[DNAFieldAttribute(19, "float", "curval", "float", 4, false, 100)]
public float curval;
[DNAFieldAttribute(20, "IpoDriver", "*driver", "IpoDriver", 8, true)]
[DNAFieldAttribute(20, "IpoDriver", "*driver", "IpoDriver", 8, true, 104)]
public IpoDriver ptr_driver;
public IpoCurve() {
this.ptr_next = default;