Files
BlenderSharp/BlendFile/DNA/LineStyleGeometryModifier_SpatialNoise.cs

44 lines
1.6 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(392, "LineStyleGeometryModifier_SpatialNoise", 112)]
public struct LineStyleGeometryModifier_SpatialNoise {
[DNAFieldAttribute(0, "LineStyleModifier", "modifier", "LineStyleModifier", 96, false, 0)]
public LineStyleModifier modifier;
[DNAFieldAttribute(1, "float", "amplitude", "float", 4, false, 96)]
public float amplitude;
[DNAFieldAttribute(2, "float", "scale", "float", 4, false, 100)]
public float scale;
[DNAFieldAttribute(3, "int", "octaves", "int", 4, false, 104)]
public int octaves;
[DNAFieldAttribute(4, "int", "flags", "int", 4, 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;
}
}
}