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(850, "Panel", 192)]
public class Panel {
[DNAFieldAttribute(0, "Panel", "*next", "Panel", 8, true)]
[DNAFieldAttribute(0, "Panel", "*next", "Panel", 8, true, 0)]
public Panel ptr_next;
[DNAFieldAttribute(1, "Panel", "*prev", "Panel", 8, true)]
[DNAFieldAttribute(1, "Panel", "*prev", "Panel", 8, true, 8)]
public Panel ptr_prev;
[DNAFieldAttribute(2, "PanelType", "*type", "PanelType", 8, true)]
[DNAFieldAttribute(2, "PanelType", "*type", "PanelType", 8, true, 16)]
public PanelType ptr_type;
[DNAFieldAttribute(3, "uiLayout", "*layout", "uiLayout", 8, true)]
[DNAFieldAttribute(3, "uiLayout", "*layout", "uiLayout", 8, true, 24)]
public uiLayout ptr_layout;
[DNAFieldAttribute(4, "char", "panelname[64]", "System.Char[]", 64, false)]
[DNAFieldAttribute(4, "char", "panelname[64]", "System.Char[]", 64, false, 32)]
public char[] panelname = new System.Char[64];
[DNAFieldAttribute(5, "char", "*drawname", "char", 8, true)]
[DNAFieldAttribute(5, "char", "*drawname", "char", 8, true, 96)]
public char ptr_drawname;
[DNAFieldAttribute(6, "int", "ofsx", "int", 4, false)]
[DNAFieldAttribute(6, "int", "ofsx", "int", 4, false, 104)]
public int ofsx;
[DNAFieldAttribute(7, "int", "ofsy", "int", 4, false)]
[DNAFieldAttribute(7, "int", "ofsy", "int", 4, false, 108)]
public int ofsy;
[DNAFieldAttribute(8, "int", "sizex", "int", 4, false)]
[DNAFieldAttribute(8, "int", "sizex", "int", 4, false, 112)]
public int sizex;
[DNAFieldAttribute(9, "int", "sizey", "int", 4, false)]
[DNAFieldAttribute(9, "int", "sizey", "int", 4, false, 116)]
public int sizey;
[DNAFieldAttribute(10, "int", "blocksizex", "int", 4, false)]
[DNAFieldAttribute(10, "int", "blocksizex", "int", 4, false, 120)]
public int blocksizex;
[DNAFieldAttribute(11, "int", "blocksizey", "int", 4, false)]
[DNAFieldAttribute(11, "int", "blocksizey", "int", 4, false, 124)]
public int blocksizey;
[DNAFieldAttribute(12, "short", "labelofs", "short", 2, false)]
[DNAFieldAttribute(12, "short", "labelofs", "short", 2, false, 128)]
public short labelofs;
[DNAFieldAttribute(13, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(13, "short", "flag", "short", 2, false, 130)]
public short flag;
[DNAFieldAttribute(14, "short", "runtime_flag", "short", 2, false)]
[DNAFieldAttribute(14, "short", "runtime_flag", "short", 2, false, 132)]
public short runtime_flag;
[DNAFieldAttribute(15, "char", "_pad[6]", "System.Char[]", 6, false)]
[DNAFieldAttribute(15, "char", "_pad[6]", "System.Char[]", 6, false, 134)]
public char[] _pad = new System.Char[6];
[DNAFieldAttribute(16, "int", "sortorder", "int", 4, false)]
[DNAFieldAttribute(16, "int", "sortorder", "int", 4, false, 140)]
public int sortorder;
[DNAFieldAttribute(17, "void", "*activedata", "void", 8, true)]
[DNAFieldAttribute(17, "void", "*activedata", "void", 8, true, 144)]
public object ptr_activedata;
[DNAFieldAttribute(18, "ListBase", "children", "ListBase", 16, false)]
[DNAFieldAttribute(18, "ListBase", "children", "ListBase", 16, false, 152)]
public ListBase children;
[DNAFieldAttribute(19, "ListBase", "layout_panel_states", "ListBase", 16, false)]
[DNAFieldAttribute(19, "ListBase", "layout_panel_states", "ListBase", 16, false, 168)]
public ListBase layout_panel_states;
[DNAFieldAttribute(20, "Panel_Runtime", "*runtime", "Panel_Runtime", 8, true)]
[DNAFieldAttribute(20, "Panel_Runtime", "*runtime", "Panel_Runtime", 8, true, 184)]
public Panel_Runtime ptr_runtime;
public Panel() {
this.ptr_next = default;