//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(617, "NodeImageMultiFileSocket")] public struct NodeImageMultiFileSocket { [DNAFieldAttribute(0, "short", "use_render_format", "short", 2)] public short use_render_format; [DNAFieldAttribute(1, "short", "use_node_format", "short", 2)] public short use_node_format; [DNAFieldAttribute(2, "char", "save_as_render", "char", 1)] public char save_as_render; [DNAFieldAttribute(3, "char", "_pad1[3]", "System.Char[]", 1)] public char[] _pad1 = new System.Char[3]; [DNAFieldAttribute(4, "char", "path[1024]", "System.Char[]", 1)] public char[] path = new System.Char[1024]; [DNAFieldAttribute(5, "ImageFormatData", "format", "ImageFormatData", 336)] public ImageFormatData format; [DNAFieldAttribute(6, "char", "layer[30]", "System.Char[]", 1)] public char[] layer = new System.Char[30]; [DNAFieldAttribute(7, "char", "_pad2[2]", "System.Char[]", 1)] public char[] _pad2 = new System.Char[2]; public NodeImageMultiFileSocket() { this.use_render_format = default; this.use_node_format = default; this.save_as_render = default; this._pad1 = default; this.path = default; this.format = default; this.layer = default; this._pad2 = default; } public NodeImageMultiFileSocket(short use_render_format, short use_node_format, char save_as_render, char[] _pad1, char[] path, ImageFormatData format, char[] layer, char[] _pad2) { this.use_render_format = use_render_format; this.use_node_format = use_node_format; this.save_as_render = save_as_render; this._pad1 = _pad1; this.path = path; this.format = format; this.layer = layer; this._pad2 = _pad2; } } }