44 lines
1.5 KiB
C#
44 lines
1.5 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(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;
|
|
}
|
|
}
|
|
}
|