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,11 +11,16 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct NodeBilateralBlurData {
[DNAFieldAttribute(0, "float", "sigma_color", 4)]
public float sigma_color;
[DNAFieldAttribute(1, "float", "sigma_space", 4)]
public float sigma_space;
[DNAFieldAttribute(2, "short", "iter", 2)]
public short iter;
[DNAFieldAttribute(3, "char", "_pad[2]", 1)]
public char[] _pad = new System.Char[2];
public NodeBilateralBlurData(float sigma_color, float sigma_space, short iter, char[] _pad) {
this.sigma_color = sigma_color;