Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,53 +15,53 @@ namespace BlendFile.DNA {
[DNAClassAttribute(565, "bNodeTreeInterfaceSocket", 72)]
public class bNodeTreeInterfaceSocket {
[DNAFieldAttribute(0, "bNodeTreeInterfaceItem", "item", "bNodeTreeInterfaceItem", 8, false, 0)]
[DNAFieldAttribute(8, "bNodeTreeInterfaceItem", 0, "item", "bNodeTreeInterfaceItem", false, 0)]
public bNodeTreeInterfaceItem item;
[DNAFieldAttribute(1, "char", "*name", "char", 8, true, 8)]
public char ptr_name;
[DNAFieldAttribute(2, "char", "*description", "char", 8, true, 16)]
public char ptr_description;
[DNAFieldAttribute(3, "char", "*socket_type", "char", 8, true, 24)]
public char ptr_socket_type;
[DNAFieldAttribute(4, "int", "flag", "int", 4, false, 32)]
[DNAFieldAttribute(8, "char", 1, "*name", "char", true, 8)]
public char name;
[DNAFieldAttribute(8, "char", 2, "*description", "char", true, 16)]
public char description;
[DNAFieldAttribute(8, "char", 3, "*socket_type", "char", true, 24)]
public char socket_type;
[DNAFieldAttribute(4, "int", 4, "flag", "int", false, 32)]
public int flag;
[DNAFieldAttribute(5, "short", "attribute_domain", "short", 2, false, 36)]
[DNAFieldAttribute(2, "short", 5, "attribute_domain", "short", false, 36)]
public short attribute_domain;
[DNAFieldAttribute(6, "short", "default_input", "short", 2, false, 38)]
[DNAFieldAttribute(2, "short", 6, "default_input", "short", false, 38)]
public short default_input;
[DNAFieldAttribute(7, "char", "*default_attribute_name", "char", 8, true, 40)]
public char ptr_default_attribute_name;
[DNAFieldAttribute(8, "char", "*identifier", "char", 8, true, 48)]
public char ptr_identifier;
[DNAFieldAttribute(9, "void", "*socket_data", "void", 8, true, 56)]
public object ptr_socket_data;
[DNAFieldAttribute(10, "IDProperty", "*properties", "IDProperty", 8, true, 64)]
public IDProperty ptr_properties;
[DNAFieldAttribute(8, "char", 7, "*default_attribute_name", "char", true, 40)]
public char default_attribute_name;
[DNAFieldAttribute(8, "char", 8, "*identifier", "char", true, 48)]
public char identifier;
[DNAFieldAttribute(8, "void", 9, "*socket_data", "void", true, 56)]
public object socket_data;
[DNAFieldAttribute(8, "IDProperty", 10, "*properties", "IDProperty", true, 64)]
public IDProperty properties;
public bNodeTreeInterfaceSocket() {
this.item = default;
this.ptr_name = default;
this.ptr_description = default;
this.ptr_socket_type = default;
this.name = default;
this.description = default;
this.socket_type = default;
this.flag = default;
this.attribute_domain = default;
this.default_input = default;
this.ptr_default_attribute_name = default;
this.ptr_identifier = default;
this.ptr_socket_data = default;
this.ptr_properties = default;
this.default_attribute_name = default;
this.identifier = default;
this.socket_data = default;
this.properties = default;
}
public bNodeTreeInterfaceSocket(bNodeTreeInterfaceItem item, char ptr_name, char ptr_description, char ptr_socket_type, int flag, short attribute_domain, short default_input, char ptr_default_attribute_name, char ptr_identifier, object ptr_socket_data, IDProperty ptr_properties) {
public bNodeTreeInterfaceSocket(bNodeTreeInterfaceItem item, char name, char description, char socket_type, int flag, short attribute_domain, short default_input, char default_attribute_name, char identifier, object socket_data, IDProperty properties) {
this.item = item;
this.ptr_name = ptr_name;
this.ptr_description = ptr_description;
this.ptr_socket_type = ptr_socket_type;
this.name = name;
this.description = description;
this.socket_type = socket_type;
this.flag = flag;
this.attribute_domain = attribute_domain;
this.default_input = default_input;
this.ptr_default_attribute_name = ptr_default_attribute_name;
this.ptr_identifier = ptr_identifier;
this.ptr_socket_data = ptr_socket_data;
this.ptr_properties = ptr_properties;
this.default_attribute_name = default_attribute_name;
this.identifier = identifier;
this.socket_data = socket_data;
this.properties = properties;
}
}
}