Files
BlenderSharp/BlendFile/DNA/GlowVars.cs
2025-03-04 18:48:04 +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", 24)]
public class GlowVars {
[DNAFieldAttribute(4, "float", 0, "fMini", "float", false, 0)]
public float fMini;
[DNAFieldAttribute(4, "float", 1, "fClamp", "float", false, 4)]
public float fClamp;
[DNAFieldAttribute(4, "float", 2, "fBoost", "float", false, 8)]
public float fBoost;
[DNAFieldAttribute(4, "float", 3, "dDist", "float", false, 12)]
public float dDist;
[DNAFieldAttribute(4, "int", 4, "dQuality", "int", false, 16)]
public int dQuality;
[DNAFieldAttribute(4, "int", 5, "bNoComp", "int", false, 20)]
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;
}
}
}