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,19 +11,32 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct NodeDefocus {
[DNAFieldAttribute(0, "char", "bktype", 1)]
public char bktype;
[DNAFieldAttribute(1, "char", "_pad0", 1)]
public char _pad0;
[DNAFieldAttribute(2, "char", "preview", 1)]
public char preview;
[DNAFieldAttribute(3, "char", "gamco", 1)]
public char gamco;
[DNAFieldAttribute(4, "short", "samples", 2)]
public short samples;
[DNAFieldAttribute(5, "short", "no_zbuf", 2)]
public short no_zbuf;
[DNAFieldAttribute(6, "float", "fstop", 4)]
public float fstop;
[DNAFieldAttribute(7, "float", "maxblur", 4)]
public float maxblur;
[DNAFieldAttribute(8, "float", "bthresh", 4)]
public float bthresh;
[DNAFieldAttribute(9, "float", "scale", 4)]
public float scale;
[DNAFieldAttribute(10, "float", "rotation", 4)]
public float rotation;
[DNAFieldAttribute(11, "char", "_pad1[4]", 1)]
public char[] _pad1 = new System.Char[4];
public NodeDefocus(char bktype, char _pad0, char preview, char gamco, short samples, short no_zbuf, float fstop, float maxblur, float bthresh, float scale, float rotation, char[] _pad1) {
this.bktype = bktype;