//------------------------------------------------------------------------------ // // 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(84, "FMod_Envelope", 24)] public class FMod_Envelope { [DNAFieldAttribute(0, "FCM_EnvelopeData", "*data", "FCM_EnvelopeData", 8, true)] public FCM_EnvelopeData ptr_data; [DNAFieldAttribute(1, "int", "totvert", "int", 4, false)] public int totvert; [DNAFieldAttribute(2, "float", "midval", "float", 4, false)] public float midval; [DNAFieldAttribute(3, "float", "min", "float", 4, false)] public float min; [DNAFieldAttribute(4, "float", "max", "float", 4, false)] public float max; public FMod_Envelope() { this.ptr_data = default; this.totvert = default; this.midval = default; this.min = default; this.max = default; } public FMod_Envelope(FCM_EnvelopeData ptr_data, int totvert, float midval, float min, float max) { this.ptr_data = ptr_data; this.totvert = totvert; this.midval = midval; this.min = min; this.max = max; } } }