Files
BlenderSharp/BlendFile/DNA/bNodeTreeInterfaceSocket.cs
2025-03-04 18:48:04 +01:00

68 lines
3.0 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(8, "bNodeTreeInterfaceItem", 0, "item", "bNodeTreeInterfaceItem", false, 0)]
public bNodeTreeInterfaceItem item;
[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(2, "short", 5, "attribute_domain", "short", false, 36)]
public short attribute_domain;
[DNAFieldAttribute(2, "short", 6, "default_input", "short", false, 38)]
public short default_input;
[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.name = default;
this.description = default;
this.socket_type = default;
this.flag = default;
this.attribute_domain = default;
this.default_input = default;
this.default_attribute_name = default;
this.identifier = default;
this.socket_data = default;
this.properties = default;
}
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.name = name;
this.description = description;
this.socket_type = socket_type;
this.flag = flag;
this.attribute_domain = attribute_domain;
this.default_input = default_input;
this.default_attribute_name = default_attribute_name;
this.identifier = identifier;
this.socket_data = socket_data;
this.properties = properties;
}
}
}