Files
BlenderSharp/BlendFile/DNA/GlowShaderFxData.cs
2025-03-04 18:48:04 +01:00

72 lines
3.1 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(920, "GlowShaderFxData", 208)]
public class GlowShaderFxData {
[DNAFieldAttribute(104, "ShaderFxData", 0, "shaderfx", "ShaderFxData", false, 0)]
public ShaderFxData shaderfx;
[DNAFieldAttribute(16, "float", 1, "glow_color[4]", "System.Single[]", false, 104)]
public float[] glow_color = new System.Single[4];
[DNAFieldAttribute(12, "float", 2, "select_color[3]", "System.Single[]", false, 120)]
public float[] select_color = new System.Single[3];
[DNAFieldAttribute(4, "float", 3, "threshold", "float", false, 132)]
public float threshold;
[DNAFieldAttribute(4, "int", 4, "flag", "int", false, 136)]
public int flag;
[DNAFieldAttribute(4, "int", 5, "mode", "int", false, 140)]
public int mode;
[DNAFieldAttribute(8, "float", 6, "blur[2]", "System.Single[]", false, 144)]
public float[] blur = new System.Single[2];
[DNAFieldAttribute(4, "int", 7, "samples", "int", false, 152)]
public int samples;
[DNAFieldAttribute(4, "float", 8, "rotation", "float", false, 156)]
public float rotation;
[DNAFieldAttribute(4, "int", 9, "blend_mode", "int", false, 160)]
public int blend_mode;
[DNAFieldAttribute(4, "char", 10, "_pad[4]", "System.Char[]", false, 164)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(40, "ShaderFxData_Runtime", 11, "runtime", "ShaderFxData_Runtime", false, 168)]
public ShaderFxData_Runtime runtime;
public GlowShaderFxData() {
this.shaderfx = default;
this.glow_color = default;
this.select_color = default;
this.threshold = default;
this.flag = default;
this.mode = default;
this.blur = default;
this.samples = default;
this.rotation = default;
this.blend_mode = default;
this._pad = default;
this.runtime = default;
}
public GlowShaderFxData(ShaderFxData shaderfx, float[] glow_color, float[] select_color, float threshold, int flag, int mode, float[] blur, int samples, float rotation, int blend_mode, char[] _pad, ShaderFxData_Runtime runtime) {
this.shaderfx = shaderfx;
this.glow_color = glow_color;
this.select_color = select_color;
this.threshold = threshold;
this.flag = flag;
this.mode = mode;
this.blur = blur;
this.samples = samples;
this.rotation = rotation;
this.blend_mode = blend_mode;
this._pad = _pad;
this.runtime = runtime;
}
}
}