44 lines
1.5 KiB
C#
44 lines
1.5 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")]
|
|
public struct LineStyleGeometryModifier_SpatialNoise {
|
|
[DNAFieldAttribute(0, "LineStyleModifier", "modifier", 96)]
|
|
public LineStyleModifier modifier;
|
|
[DNAFieldAttribute(1, "float", "amplitude", 4)]
|
|
public float amplitude;
|
|
[DNAFieldAttribute(2, "float", "scale", 4)]
|
|
public float scale;
|
|
[DNAFieldAttribute(3, "int", "octaves", 4)]
|
|
public int octaves;
|
|
[DNAFieldAttribute(4, "int", "flags", 4)]
|
|
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;
|
|
}
|
|
}
|
|
}
|