//------------------------------------------------------------------------------ // // 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(392, "LineStyleGeometryModifier_SpatialNoise", 112)] public class LineStyleGeometryModifier_SpatialNoise { [DNAFieldAttribute(96, "LineStyleModifier", 0, "modifier", "LineStyleModifier", false, 0)] public LineStyleModifier modifier; [DNAFieldAttribute(4, "float", 1, "amplitude", "float", false, 96)] public float amplitude; [DNAFieldAttribute(4, "float", 2, "scale", "float", false, 100)] public float scale; [DNAFieldAttribute(4, "int", 3, "octaves", "int", false, 104)] public int octaves; [DNAFieldAttribute(4, "int", 4, "flags", "int", false, 108)] public int flags; public LineStyleGeometryModifier_SpatialNoise() { this.modifier = default; this.amplitude = default; this.scale = default; this.octaves = default; this.flags = default; } public LineStyleGeometryModifier_SpatialNoise(LineStyleModifier modifier, float amplitude, float scale, int octaves, int flags) { this.modifier = modifier; this.amplitude = amplitude; this.scale = scale; this.octaves = octaves; this.flags = flags; } } }