Files
BlenderSharp/BlendFile/DNA/LineStyleGeometryModifier_SpatialNoise.cs
2025-01-22 02:23:29 +01:00

19 lines
647 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct LineStyleGeometryModifier_SpatialNoise {
public LineStyleModifier modifier;
public float amplitude;
public float scale;
public int octaves;
public int flags;
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;
}
}
}