Files
BlenderSharp/BlendFile/DNA/NodeImageMultiFileSocket.cs
2025-02-19 17:07:50 +01:00

56 lines
2.4 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(617, "NodeImageMultiFileSocket")]
public struct NodeImageMultiFileSocket {
[DNAFieldAttribute(0, "short", "use_render_format", "short", 2, false)]
public short use_render_format;
[DNAFieldAttribute(1, "short", "use_node_format", "short", 2, false)]
public short use_node_format;
[DNAFieldAttribute(2, "char", "save_as_render", "char", 1, false)]
public char save_as_render;
[DNAFieldAttribute(3, "char", "_pad1[3]", "System.Char[]", 3, false)]
public char[] _pad1 = new System.Char[3];
[DNAFieldAttribute(4, "char", "path[1024]", "System.Char[]", 1024, false)]
public char[] path = new System.Char[1024];
[DNAFieldAttribute(5, "ImageFormatData", "format", "ImageFormatData", 336, false)]
public ImageFormatData format;
[DNAFieldAttribute(6, "char", "layer[30]", "System.Char[]", 30, false)]
public char[] layer = new System.Char[30];
[DNAFieldAttribute(7, "char", "_pad2[2]", "System.Char[]", 2, false)]
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;
}
}
}