//------------------------------------------------------------------------------ // // 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; // Automatically generated by BlenderSharp at 22/01/2025 02:33:14 namespace BlendFile.DNA { public class LengthGpencilModifierData { public GpencilModifierData modifier; public Material ptr_material; public char[] layername = new System.Char[64]; public int pass_index; public int flag; public int layer_pass; public float start_fac; public float end_fac; public float rand_start_fac; public float rand_end_fac; public float rand_offset; public float overshoot_fac; public int seed; public int step; public int mode; public char[] _pad = new System.Char[4]; public float point_density; public float segment_influence; public float max_angle; public LengthGpencilModifierData( GpencilModifierData modifier, Material ptr_material, char[] layername, int pass_index, int flag, int layer_pass, float start_fac, float end_fac, float rand_start_fac, float rand_end_fac, float rand_offset, float overshoot_fac, int seed, int step, int mode, char[] _pad, float point_density, float segment_influence, float max_angle) { this.modifier = modifier; this.ptr_material = ptr_material; this.layername = layername; this.pass_index = pass_index; this.flag = flag; this.layer_pass = layer_pass; this.start_fac = start_fac; this.end_fac = end_fac; this.rand_start_fac = rand_start_fac; this.rand_end_fac = rand_end_fac; this.rand_offset = rand_offset; this.overshoot_fac = overshoot_fac; this.seed = seed; this.step = step; this.mode = mode; this._pad = _pad; this.point_density = point_density; this.segment_influence = segment_influence; this.max_angle = max_angle; } } }