//------------------------------------------------------------------------------ // // 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(388, "LineStyleThicknessModifier_Material", 120)] public class LineStyleThicknessModifier_Material { [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; [DNAFieldAttribute(4, "int", 5, "mat_attr", "int", false, 116)] public int mat_attr; public LineStyleThicknessModifier_Material() { this.modifier = default; this.curve = default; this.flags = default; this.value_min = default; this.value_max = default; this.mat_attr = default; } public LineStyleThicknessModifier_Material(LineStyleModifier modifier, CurveMapping curve, int flags, float value_min, float value_max, int mat_attr) { this.modifier = modifier; this.curve = curve; this.flags = flags; this.value_min = value_min; this.value_max = value_max; this.mat_attr = mat_attr; } } }