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