//------------------------------------------------------------------------------ // // 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 BlendFile.CompatTypes; using System; namespace BlendFile.DNA { public class WeightProxGpencilModifierData { public GpencilModifierData modifier; public char[] target_vgname = new System.Char[64]; public Material ptr_material; public char[] layername = new System.Char[64]; public char[] vgname = new System.Char[64]; public int pass_index; public int flag; public float min_weight; public int layer_pass; public float dist_start; public float dist_end; public Object ptr_object; public WeightProxGpencilModifierData(GpencilModifierData modifier, char[] target_vgname, Material ptr_material, char[] layername, char[] vgname, int pass_index, int flag, float min_weight, int layer_pass, float dist_start, float dist_end, Object ptr_object) { this.modifier = modifier; this.target_vgname = target_vgname; this.ptr_material = ptr_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.ptr_object = ptr_object; } } }