//------------------------------------------------------------------------------ // // 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(448, "CurveModifierData", 208)] public class CurveModifierData { [DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)] public ModifierData modifier; [DNAFieldAttribute(1, "Object", "*object", "Object", 8, true)] public Object ptr_object; [DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 64, false)] public char[] name = new System.Char[64]; [DNAFieldAttribute(3, "short", "defaxis", "short", 2, false)] public short defaxis; [DNAFieldAttribute(4, "short", "flag", "short", 2, false)] public short flag; [DNAFieldAttribute(5, "char", "_pad[4]", "System.Char[]", 4, false)] public char[] _pad = new System.Char[4]; [DNAFieldAttribute(6, "void", "*_pad1", "void", 8, true)] public object ptr__pad1; public CurveModifierData() { this.modifier = default; this.ptr_object = default; this.name = default; this.defaxis = default; this.flag = default; this._pad = default; this.ptr__pad1 = default; } public CurveModifierData(ModifierData modifier, Object ptr_object, char[] name, short defaxis, short flag, char[] _pad, object ptr__pad1) { this.modifier = modifier; this.ptr_object = ptr_object; this.name = name; this.defaxis = defaxis; this.flag = flag; this._pad = _pad; this.ptr__pad1 = ptr__pad1; } } }