//------------------------------------------------------------------------------ // // 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(80, "FModifier")] public class FModifier { [DNAFieldAttribute(0, "FModifier", "*next", "FModifier", 4, true)] public FModifier ptr_next; [DNAFieldAttribute(1, "FModifier", "*prev", "FModifier", 4, true)] public FModifier ptr_prev; [DNAFieldAttribute(2, "FCurve", "*curve", "FCurve", 4, true)] public FCurve ptr_curve; [DNAFieldAttribute(3, "void", "*data", "void", 4, true)] public object ptr_data; [DNAFieldAttribute(4, "char", "name[64]", "System.Char[]", 64, false)] public char[] name = new System.Char[64]; [DNAFieldAttribute(5, "short", "type", "short", 2, false)] public short type; [DNAFieldAttribute(6, "short", "flag", "short", 2, false)] public short flag; [DNAFieldAttribute(7, "short", "ui_expand_flag", "short", 2, false)] public short ui_expand_flag; [DNAFieldAttribute(8, "char", "_pad[6]", "System.Char[]", 6, false)] public char[] _pad = new System.Char[6]; [DNAFieldAttribute(9, "float", "influence", "float", 4, false)] public float influence; [DNAFieldAttribute(10, "float", "sfra", "float", 4, false)] public float sfra; [DNAFieldAttribute(11, "float", "efra", "float", 4, false)] public float efra; [DNAFieldAttribute(12, "float", "blendin", "float", 4, false)] public float blendin; [DNAFieldAttribute(13, "float", "blendout", "float", 4, false)] public float blendout; public FModifier() { this.ptr_next = default; this.ptr_prev = default; this.ptr_curve = default; this.ptr_data = default; this.name = default; this.type = default; this.flag = default; this.ui_expand_flag = default; this._pad = default; this.influence = default; this.sfra = default; this.efra = default; this.blendin = default; this.blendout = default; } public FModifier(FModifier ptr_next, FModifier ptr_prev, FCurve ptr_curve, object ptr_data, char[] name, short type, short flag, short ui_expand_flag, char[] _pad, float influence, float sfra, float efra, float blendin, float blendout) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.ptr_curve = ptr_curve; this.ptr_data = ptr_data; this.name = name; this.type = type; this.flag = flag; this.ui_expand_flag = ui_expand_flag; this._pad = _pad; this.influence = influence; this.sfra = sfra; this.efra = efra; this.blendin = blendin; this.blendout = blendout; } } }