//------------------------------------------------------------------------------ // // 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(82, "FMod_FunctionGenerator", 24)] public class FMod_FunctionGenerator { [DNAFieldAttribute(4, "float", 0, "amplitude", "float", false, 0)] public float amplitude; [DNAFieldAttribute(4, "float", 1, "phase_multiplier", "float", false, 4)] public float phase_multiplier; [DNAFieldAttribute(4, "float", 2, "phase_offset", "float", false, 8)] public float phase_offset; [DNAFieldAttribute(4, "float", 3, "value_offset", "float", false, 12)] public float value_offset; [DNAFieldAttribute(4, "int", 4, "type", "int", false, 16)] public int type; [DNAFieldAttribute(4, "int", 5, "flag", "int", false, 20)] public int flag; public FMod_FunctionGenerator() { this.amplitude = default; this.phase_multiplier = default; this.phase_offset = default; this.value_offset = default; this.type = default; this.flag = default; } public FMod_FunctionGenerator(float amplitude, float phase_multiplier, float phase_offset, float value_offset, int type, int flag) { this.amplitude = amplitude; this.phase_multiplier = phase_multiplier; this.phase_offset = phase_offset; this.value_offset = value_offset; this.type = type; this.flag = flag; } } }