//------------------------------------------------------------------------------ // // 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(504, "LaplacianDeformModifierData", 216)] public class LaplacianDeformModifierData { [DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)] public ModifierData modifier; [DNAFieldAttribute(1, "char", "anchor_grp_name[64]", "System.Char[]", 64, false)] public char[] anchor_grp_name = new System.Char[64]; [DNAFieldAttribute(2, "int", "total_verts", "int", 4, false)] public int total_verts; [DNAFieldAttribute(3, "int", "repeat", "int", 4, false)] public int repeat; [DNAFieldAttribute(4, "float", "*vertexco", "float", 8, true)] public float ptr_vertexco; [DNAFieldAttribute(5, "void", "*cache_system", "void", 8, true)] public object ptr_cache_system; [DNAFieldAttribute(6, "short", "flag", "short", 2, false)] public short flag; [DNAFieldAttribute(7, "char", "_pad[6]", "System.Char[]", 6, false)] public char[] _pad = new System.Char[6]; public LaplacianDeformModifierData() { this.modifier = default; this.anchor_grp_name = default; this.total_verts = default; this.repeat = default; this.ptr_vertexco = default; this.ptr_cache_system = default; this.flag = default; this._pad = default; } public LaplacianDeformModifierData(ModifierData modifier, char[] anchor_grp_name, int total_verts, int repeat, float ptr_vertexco, object ptr_cache_system, short flag, char[] _pad) { this.modifier = modifier; this.anchor_grp_name = anchor_grp_name; this.total_verts = total_verts; this.repeat = repeat; this.ptr_vertexco = ptr_vertexco; this.ptr_cache_system = ptr_cache_system; this.flag = flag; this._pad = _pad; } } }