//------------------------------------------------------------------------------ // // 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(304, "ShrinkwrapGpencilModifierData")] public class ShrinkwrapGpencilModifierData { [DNAFieldAttribute(0, "GpencilModifierData", "modifier", 104)] public GpencilModifierData modifier; [DNAFieldAttribute(1, "Object", "*target", 1160)] public Object ptr_target; [DNAFieldAttribute(2, "Object", "*aux_target", 1160)] public Object ptr_aux_target; [DNAFieldAttribute(3, "Material", "*material", 392)] public Material ptr_material; [DNAFieldAttribute(4, "char", "layername[64]", 1)] public char[] layername = new System.Char[64]; [DNAFieldAttribute(5, "char", "vgname[64]", 1)] public char[] vgname = new System.Char[64]; [DNAFieldAttribute(6, "int", "pass_index", 4)] public int pass_index; [DNAFieldAttribute(7, "int", "flag", 4)] public int flag; [DNAFieldAttribute(8, "int", "layer_pass", 4)] public int layer_pass; [DNAFieldAttribute(9, "float", "keep_dist", 4)] public float keep_dist; [DNAFieldAttribute(10, "short", "shrink_type", 2)] public short shrink_type; [DNAFieldAttribute(11, "char", "shrink_opts", 1)] public char shrink_opts; [DNAFieldAttribute(12, "char", "shrink_mode", 1)] public char shrink_mode; [DNAFieldAttribute(13, "float", "proj_limit", 4)] public float proj_limit; [DNAFieldAttribute(14, "char", "proj_axis", 1)] public char proj_axis; [DNAFieldAttribute(15, "char", "subsurf_levels", 1)] public char subsurf_levels; [DNAFieldAttribute(16, "char", "_pad[6]", 1)] public char[] _pad = new System.Char[6]; [DNAFieldAttribute(17, "float", "smooth_factor", 4)] public float smooth_factor; [DNAFieldAttribute(18, "int", "smooth_step", 4)] public int smooth_step; [DNAFieldAttribute(19, "ShrinkwrapTreeData", "*cache_data", 0)] public ShrinkwrapTreeData ptr_cache_data; public ShrinkwrapGpencilModifierData() { this.modifier = default; this.ptr_target = default; this.ptr_aux_target = default; this.ptr_material = default; this.layername = default; this.vgname = default; this.pass_index = default; this.flag = default; this.layer_pass = default; this.keep_dist = default; this.shrink_type = default; this.shrink_opts = default; this.shrink_mode = default; this.proj_limit = default; this.proj_axis = default; this.subsurf_levels = default; this._pad = default; this.smooth_factor = default; this.smooth_step = default; this.ptr_cache_data = default; } public ShrinkwrapGpencilModifierData( GpencilModifierData modifier, Object ptr_target, Object ptr_aux_target, Material ptr_material, char[] layername, char[] vgname, int pass_index, int flag, int layer_pass, float keep_dist, short shrink_type, char shrink_opts, char shrink_mode, float proj_limit, char proj_axis, char subsurf_levels, char[] _pad, float smooth_factor, int smooth_step, ShrinkwrapTreeData ptr_cache_data) { this.modifier = modifier; this.ptr_target = ptr_target; this.ptr_aux_target = ptr_aux_target; this.ptr_material = ptr_material; this.layername = layername; this.vgname = vgname; this.pass_index = pass_index; this.flag = flag; this.layer_pass = layer_pass; this.keep_dist = keep_dist; this.shrink_type = shrink_type; this.shrink_opts = shrink_opts; this.shrink_mode = shrink_mode; this.proj_limit = proj_limit; this.proj_axis = proj_axis; this.subsurf_levels = subsurf_levels; this._pad = _pad; this.smooth_factor = smooth_factor; this.smooth_step = smooth_step; this.ptr_cache_data = ptr_cache_data; } } }