Files
BlenderSharp/BlendFile/DNA/NodeGlare.cs
2025-01-22 02:23:29 +01:00

37 lines
1.2 KiB
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct NodeGlare {
public char quality;
public char type;
public char iter;
public char angle;
public char _pad0;
public char size;
public char star_45;
public char streaks;
public float colmod;
public float mix;
public float threshold;
public float fade;
public float angle_ofs;
public char[] _pad1 = new System.Char[4];
public NodeGlare(char quality, char type, char iter, char angle, char _pad0, char size, char star_45, char streaks, float colmod, float mix, float threshold, float fade, float angle_ofs, char[] _pad1) {
this.quality = quality;
this.type = type;
this.iter = iter;
this.angle = angle;
this._pad0 = _pad0;
this.size = size;
this.star_45 = star_45;
this.streaks = streaks;
this.colmod = colmod;
this.mix = mix;
this.threshold = threshold;
this.fade = fade;
this.angle_ofs = angle_ofs;
this._pad1 = _pad1;
}
}
}