//------------------------------------------------------------------------------ // // 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(367, "LineStyleThicknessModifier_AlongStroke", 120)] public class LineStyleThicknessModifier_AlongStroke { [DNAFieldAttribute(96, "LineStyleModifier", 0, "modifier", "LineStyleModifier", false, 0)] public LineStyleModifier modifier; [DNAFieldAttribute(8, "CurveMapping", 1, "*curve", "CurveMapping", true, 96)] public CurveMapping curve; [DNAFieldAttribute(4, "int", 2, "flags", "int", false, 104)] public int flags; [DNAFieldAttribute(4, "float", 3, "value_min", "float", false, 108)] public float value_min; [DNAFieldAttribute(4, "float", 4, "value_max", "float", false, 112)] public float value_max; [DNAArrayAttribute(4, "char", 5, "_pad[4]", "System.Char[]", 4, false, 116)] public char[] _pad = new System.Char[4]; public LineStyleThicknessModifier_AlongStroke() { this.modifier = default; this.curve = default; this.flags = default; this.value_min = default; this.value_max = default; this._pad = default; } public LineStyleThicknessModifier_AlongStroke(LineStyleModifier modifier, CurveMapping curve, int flags, float value_min, float value_max, char[] _pad) { this.modifier = modifier; this.curve = curve; this.flags = flags; this.value_min = value_min; this.value_max = value_max; this._pad = _pad; } } }