//------------------------------------------------------------------------------ // // 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(386, "LineStyleColorModifier_Material", 112)] public class LineStyleColorModifier_Material { [DNAFieldAttribute(96, "LineStyleModifier", 0, "modifier", "LineStyleModifier", false, 0)] public LineStyleModifier modifier; [DNAFieldAttribute(8, "ColorBand", 1, "*color_ramp", "ColorBand", true, 96)] public ColorBand color_ramp; [DNAFieldAttribute(4, "int", 2, "flags", "int", false, 104)] public int flags; [DNAFieldAttribute(4, "int", 3, "mat_attr", "int", false, 108)] public int mat_attr; public LineStyleColorModifier_Material() { this.modifier = default; this.color_ramp = default; this.flags = default; this.mat_attr = default; } public LineStyleColorModifier_Material(LineStyleModifier modifier, ColorBand color_ramp, int flags, int mat_attr) { this.modifier = modifier; this.color_ramp = color_ramp; this.flags = flags; this.mat_attr = mat_attr; } } }