Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,15 +11,24 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct NodeImageMultiFileSocket {
[DNAFieldAttribute(0, "short", "use_render_format", 2)]
public short use_render_format;
[DNAFieldAttribute(1, "short", "use_node_format", 2)]
public short use_node_format;
[DNAFieldAttribute(2, "char", "save_as_render", 1)]
public char save_as_render;
[DNAFieldAttribute(3, "char", "_pad1[3]", 1)]
public char[] _pad1 = new System.Char[3];
[DNAFieldAttribute(4, "char", "path[1024]", 1)]
public char[] path = new System.Char[1024];
[DNAFieldAttribute(5, "ImageFormatData", "format", 336)]
public ImageFormatData format;
[DNAFieldAttribute(6, "char", "layer[30]", 1)]
public char[] layer = new System.Char[30];
[DNAFieldAttribute(7, "char", "_pad2[2]", 1)]
public char[] _pad2 = new System.Char[2];
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;