//------------------------------------------------------------------------------ // // 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(300, "WeightProxGpencilModifierData", 336)] public class WeightProxGpencilModifierData { [DNAFieldAttribute(104, "GpencilModifierData", 0, "modifier", "GpencilModifierData", false, 0)] public GpencilModifierData modifier; [DNAArrayAttribute(64, "char", 1, "target_vgname[64]", "System.Char[]", 64, false, 104)] public char[] target_vgname = new System.Char[64]; [DNAFieldAttribute(8, "Material", 2, "*material", "Material", true, 168)] public Material material; [DNAArrayAttribute(64, "char", 3, "layername[64]", "System.Char[]", 64, false, 176)] public char[] layername = new System.Char[64]; [DNAArrayAttribute(64, "char", 4, "vgname[64]", "System.Char[]", 64, false, 240)] public char[] vgname = new System.Char[64]; [DNAFieldAttribute(4, "int", 5, "pass_index", "int", false, 304)] public int pass_index; [DNAFieldAttribute(4, "int", 6, "flag", "int", false, 308)] public int flag; [DNAFieldAttribute(4, "float", 7, "min_weight", "float", false, 312)] public float min_weight; [DNAFieldAttribute(4, "int", 8, "layer_pass", "int", false, 316)] public int layer_pass; [DNAFieldAttribute(4, "float", 9, "dist_start", "float", false, 320)] public float dist_start; [DNAFieldAttribute(4, "float", 10, "dist_end", "float", false, 324)] public float dist_end; [DNAFieldAttribute(8, "Object", 11, "*object", "Object", true, 328)] public Object @object; public WeightProxGpencilModifierData() { this.modifier = default; this.target_vgname = default; this.material = default; this.layername = default; this.vgname = default; this.pass_index = default; this.flag = default; this.min_weight = default; this.layer_pass = default; this.dist_start = default; this.dist_end = default; this.@object = default; } public WeightProxGpencilModifierData(GpencilModifierData modifier, char[] target_vgname, Material material, char[] layername, char[] vgname, int pass_index, int flag, float min_weight, int layer_pass, float dist_start, float dist_end, Object @object) { this.modifier = modifier; this.target_vgname = target_vgname; this.material = material; this.layername = layername; this.vgname = vgname; this.pass_index = pass_index; this.flag = flag; this.min_weight = min_weight; this.layer_pass = layer_pass; this.dist_start = dist_start; this.dist_end = dist_end; this.@object = @object; } } }