//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(897, "GlowVars")] public struct GlowVars { [DNAFieldAttribute(0, "float", "fMini", 4)] public float fMini; [DNAFieldAttribute(1, "float", "fClamp", 4)] public float fClamp; [DNAFieldAttribute(2, "float", "fBoost", 4)] public float fBoost; [DNAFieldAttribute(3, "float", "dDist", 4)] public float dDist; [DNAFieldAttribute(4, "int", "dQuality", 4)] public int dQuality; [DNAFieldAttribute(5, "int", "bNoComp", 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; } } }