//------------------------------------------------------------------------------ // // 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(400, "LineStyleGeometryModifier_2DOffset", 112)] public class LineStyleGeometryModifier_2DOffset { [DNAFieldAttribute(96, "LineStyleModifier", 0, "modifier", "LineStyleModifier", false, 0)] public LineStyleModifier modifier; [DNAFieldAttribute(4, "float", 1, "start", "float", false, 96)] public float start; [DNAFieldAttribute(4, "float", 2, "end", "float", false, 100)] public float end; [DNAFieldAttribute(4, "float", 3, "x", "float", false, 104)] public float x; [DNAFieldAttribute(4, "float", 4, "y", "float", false, 108)] public float y; public LineStyleGeometryModifier_2DOffset() { this.modifier = default; this.start = default; this.end = default; this.x = default; this.y = default; } public LineStyleGeometryModifier_2DOffset(LineStyleModifier modifier, float start, float end, float x, float y) { this.modifier = modifier; this.start = start; this.end = end; this.x = x; this.y = y; } } }