Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,34 +11,62 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class SpaceNode {
[DNAFieldAttribute(0, "SpaceLink", "*next", 40)]
public SpaceLink ptr_next;
[DNAFieldAttribute(1, "SpaceLink", "*prev", 40)]
public SpaceLink ptr_prev;
[DNAFieldAttribute(2, "ListBase", "regionbase", 16)]
public ListBase regionbase;
[DNAFieldAttribute(3, "char", "spacetype", 1)]
public char spacetype;
[DNAFieldAttribute(4, "char", "link_flag", 1)]
public char link_flag;
[DNAFieldAttribute(5, "char", "_pad0[6]", 1)]
public char[] _pad0 = new System.Char[6];
[DNAFieldAttribute(6, "View2D", "v2d", 152)]
public View2D v2d;
[DNAFieldAttribute(7, "ID", "*id", 208)]
public ID ptr_id;
[DNAFieldAttribute(8, "ID", "*from", 208)]
public ID ptr_from;
[DNAFieldAttribute(9, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(10, "char", "insert_ofs_dir", 1)]
public char insert_ofs_dir;
[DNAFieldAttribute(11, "char", "_pad1", 1)]
public char _pad1;
[DNAFieldAttribute(12, "float", "xof", 4)]
public float xof;
[DNAFieldAttribute(13, "float", "yof", 4)]
public float yof;
[DNAFieldAttribute(14, "float", "zoom", 4)]
public float zoom;
[DNAFieldAttribute(15, "ListBase", "treepath", 16)]
public ListBase treepath;
[DNAFieldAttribute(16, "bNodeTree", "*edittree", 544)]
public bNodeTree ptr_edittree;
[DNAFieldAttribute(17, "bNodeTree", "*nodetree", 544)]
public bNodeTree ptr_nodetree;
[DNAFieldAttribute(18, "char", "tree_idname[64]", 1)]
public char[] tree_idname = new System.Char[64];
[DNAFieldAttribute(19, "int", "treetype", 4)]
public int treetype;
[DNAFieldAttribute(20, "short", "texfrom", 2)]
public short texfrom;
[DNAFieldAttribute(21, "char", "shaderfrom", 1)]
public char shaderfrom;
[DNAFieldAttribute(22, "char", "geometry_nodes_type", 1)]
public char geometry_nodes_type;
[DNAFieldAttribute(23, "bNodeTree", "*geometry_nodes_tool_tree", 544)]
public bNodeTree ptr_geometry_nodes_tool_tree;
[DNAFieldAttribute(24, "bGPdata", "*gpd", 616)]
public bGPdata ptr_gpd;
[DNAFieldAttribute(25, "SpaceNodeOverlay", "overlay", 8)]
public SpaceNodeOverlay overlay;
[DNAFieldAttribute(26, "SpaceNode_Runtime", "*runtime", 0)]
public SpaceNode_Runtime ptr_runtime;
public SpaceNode(
SpaceLink ptr_next,