Files
BlenderSharp/BlendFile/DNA/bNodeTreeInterfaceSocket.cs

68 lines
3.1 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(565, "bNodeTreeInterfaceSocket", 72)]
public class bNodeTreeInterfaceSocket {
[DNAFieldAttribute(0, "bNodeTreeInterfaceItem", "item", "bNodeTreeInterfaceItem", 8, 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)]
public int flag;
[DNAFieldAttribute(5, "short", "attribute_domain", "short", 2, false, 36)]
public short attribute_domain;
[DNAFieldAttribute(6, "short", "default_input", "short", 2, 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;
public bNodeTreeInterfaceSocket() {
this.item = default;
this.ptr_name = default;
this.ptr_description = default;
this.ptr_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;
}
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) {
this.item = item;
this.ptr_name = ptr_name;
this.ptr_description = ptr_description;
this.ptr_socket_type = ptr_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;
}
}
}