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,33 +11,60 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class bNodeSocket {
[DNAFieldAttribute(0, "bNodeSocket", "*next", 528)]
public bNodeSocket ptr_next;
[DNAFieldAttribute(1, "bNodeSocket", "*prev", 528)]
public bNodeSocket ptr_prev;
[DNAFieldAttribute(2, "IDProperty", "*prop", 136)]
public IDProperty ptr_prop;
[DNAFieldAttribute(3, "char", "identifier[64]", 1)]
public char[] identifier = new System.Char[64];
[DNAFieldAttribute(4, "char", "name[64]", 1)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(5, "void", "*storage", 0)]
public object ptr_storage;
[DNAFieldAttribute(6, "short", "type", 2)]
public short type;
[DNAFieldAttribute(7, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(8, "short", "limit", 2)]
public short limit;
[DNAFieldAttribute(9, "short", "in_out", 2)]
public short in_out;
[DNAFieldAttribute(10, "bNodeSocketTypeHandle", "*typeinfo", 0)]
public bNodeSocketTypeHandle ptr_typeinfo;
[DNAFieldAttribute(11, "char", "idname[64]", 1)]
public char[] idname = new System.Char[64];
[DNAFieldAttribute(12, "void", "*default_value", 0)]
public object ptr_default_value;
[DNAFieldAttribute(13, "short", "stack_index", 2)]
public short stack_index;
[DNAFieldAttribute(14, "char", "display_shape", 1)]
public char display_shape;
[DNAFieldAttribute(15, "char", "attribute_domain", 1)]
public char attribute_domain;
[DNAFieldAttribute(16, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(17, "char", "label[64]", 1)]
public char[] label = new System.Char[64];
[DNAFieldAttribute(18, "char", "short_label[64]", 1)]
public char[] short_label = new System.Char[64];
[DNAFieldAttribute(19, "char", "description[64]", 1)]
public char[] description = new System.Char[64];
[DNAFieldAttribute(20, "char", "*default_attribute_name", 1)]
public char ptr_default_attribute_name;
[DNAFieldAttribute(21, "int", "own_index", 4)]
public int own_index;
[DNAFieldAttribute(22, "int", "to_index", 4)]
public int to_index;
[DNAFieldAttribute(23, "bNodeLink", "*link", 56)]
public bNodeLink ptr_link;
[DNAFieldAttribute(24, "bNodeStack", "ns", 48)]
public bNodeStack ns;
[DNAFieldAttribute(25, "bNodeSocketRuntimeHandle", "*runtime", 0)]
public bNodeSocketRuntimeHandle ptr_runtime;
public bNodeSocket(
bNodeSocket ptr_next,