- Added auto generation of DNAClass attributes on file generation - Regenerated all files
40 lines
1.3 KiB
C#
40 lines
1.3 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", 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(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;
|
|
}
|
|
}
|
|
}
|