68 lines
2.9 KiB
C#
68 lines
2.9 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")]
|
|
public class bNodeTreeInterfaceSocket {
|
|
[DNAFieldAttribute(0, "bNodeTreeInterfaceItem", "item", 8)]
|
|
public bNodeTreeInterfaceItem item;
|
|
[DNAFieldAttribute(1, "char", "*name", 1)]
|
|
public char ptr_name;
|
|
[DNAFieldAttribute(2, "char", "*description", 1)]
|
|
public char ptr_description;
|
|
[DNAFieldAttribute(3, "char", "*socket_type", 1)]
|
|
public char ptr_socket_type;
|
|
[DNAFieldAttribute(4, "int", "flag", 4)]
|
|
public int flag;
|
|
[DNAFieldAttribute(5, "short", "attribute_domain", 2)]
|
|
public short attribute_domain;
|
|
[DNAFieldAttribute(6, "short", "default_input", 2)]
|
|
public short default_input;
|
|
[DNAFieldAttribute(7, "char", "*default_attribute_name", 1)]
|
|
public char ptr_default_attribute_name;
|
|
[DNAFieldAttribute(8, "char", "*identifier", 1)]
|
|
public char ptr_identifier;
|
|
[DNAFieldAttribute(9, "void", "*socket_data", 0)]
|
|
public object ptr_socket_data;
|
|
[DNAFieldAttribute(10, "IDProperty", "*properties", 136)]
|
|
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;
|
|
}
|
|
}
|
|
}
|