//------------------------------------------------------------------------------ // // 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(81, "FMod_Generator", 24)] public class FMod_Generator { [DNAFieldAttribute(8, "float", 0, "*coefficients", "float", true, 0)] public float coefficients; [DNAFieldAttribute(4, "int", 1, "arraysize", "int", false, 8)] public int arraysize; [DNAFieldAttribute(4, "int", 2, "poly_order", "int", false, 12)] public int poly_order; [DNAFieldAttribute(4, "int", 3, "mode", "int", false, 16)] public int mode; [DNAFieldAttribute(4, "int", 4, "flag", "int", false, 20)] public int flag; public FMod_Generator() { this.coefficients = default; this.arraysize = default; this.poly_order = default; this.mode = default; this.flag = default; } public FMod_Generator(float coefficients, int arraysize, int poly_order, int mode, int flag) { this.coefficients = coefficients; this.arraysize = arraysize; this.poly_order = poly_order; this.mode = mode; this.flag = flag; } } }