Files
BlenderSharp/BlendFile/DNA/GlowVars.cs
2025-02-18 18:16:57 +01:00

48 lines
1.6 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(897, "GlowVars")]
public struct GlowVars {
[DNAFieldAttribute(0, "float", "fMini", "float", 4)]
public float fMini;
[DNAFieldAttribute(1, "float", "fClamp", "float", 4)]
public float fClamp;
[DNAFieldAttribute(2, "float", "fBoost", "float", 4)]
public float fBoost;
[DNAFieldAttribute(3, "float", "dDist", "float", 4)]
public float dDist;
[DNAFieldAttribute(4, "int", "dQuality", "int", 4)]
public int dQuality;
[DNAFieldAttribute(5, "int", "bNoComp", "int", 4)]
public int bNoComp;
public GlowVars() {
this.fMini = default;
this.fClamp = default;
this.fBoost = default;
this.dDist = default;
this.dQuality = default;
this.bNoComp = default;
}
public GlowVars(float fMini, float fClamp, float fBoost, float dDist, int dQuality, int bNoComp) {
this.fMini = fMini;
this.fClamp = fClamp;
this.fBoost = fBoost;
this.dDist = dDist;
this.dQuality = dQuality;
this.bNoComp = bNoComp;
}
}
}