//------------------------------------------------------------------------------ // // 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(399, "LineStyleGeometryModifier_Blueprint", 120)] public class LineStyleGeometryModifier_Blueprint { [DNAFieldAttribute(96, "LineStyleModifier", 0, "modifier", "LineStyleModifier", false, 0)] public LineStyleModifier modifier; [DNAFieldAttribute(4, "int", 1, "flags", "int", false, 96)] public int flags; [DNAFieldAttribute(4, "int", 2, "rounds", "int", false, 100)] public int rounds; [DNAFieldAttribute(4, "float", 3, "backbone_length", "float", false, 104)] public float backbone_length; [DNAFieldAttribute(4, "int", 4, "random_radius", "int", false, 108)] public int random_radius; [DNAFieldAttribute(4, "int", 5, "random_center", "int", false, 112)] public int random_center; [DNAFieldAttribute(4, "int", 6, "random_backbone", "int", false, 116)] public int random_backbone; public LineStyleGeometryModifier_Blueprint() { this.modifier = default; this.flags = default; this.rounds = default; this.backbone_length = default; this.random_radius = default; this.random_center = default; this.random_backbone = default; } public LineStyleGeometryModifier_Blueprint(LineStyleModifier modifier, int flags, int rounds, float backbone_length, int random_radius, int random_center, int random_backbone) { this.modifier = modifier; this.flags = flags; this.rounds = rounds; this.backbone_length = backbone_length; this.random_radius = random_radius; this.random_center = random_center; this.random_backbone = random_backbone; } } }