- Added auto generation of DNAClass attributes on file generation - Regenerated all files
43 lines
1.6 KiB
C#
43 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(393, "LineStyleGeometryModifier_PerlinNoise1D")]
|
|
public struct LineStyleGeometryModifier_PerlinNoise1D {
|
|
[DNAFieldAttribute(0, "LineStyleModifier", "modifier", 96)]
|
|
public LineStyleModifier modifier;
|
|
[DNAFieldAttribute(1, "float", "frequency", 4)]
|
|
public float frequency;
|
|
[DNAFieldAttribute(2, "float", "amplitude", 4)]
|
|
public float amplitude;
|
|
[DNAFieldAttribute(3, "float", "angle", 4)]
|
|
public float angle;
|
|
[DNAFieldAttribute(4, "int", "octaves", 4)]
|
|
public int octaves;
|
|
[DNAFieldAttribute(5, "int", "seed", 4)]
|
|
public int seed;
|
|
[DNAFieldAttribute(6, "char", "_pad1[4]", 1)]
|
|
public char[] _pad1 = new System.Char[4];
|
|
public LineStyleGeometryModifier_PerlinNoise1D(LineStyleModifier modifier, float frequency, float amplitude, float angle, int octaves, int seed, char[] _pad1) {
|
|
this.modifier = modifier;
|
|
this.frequency = frequency;
|
|
this.amplitude = amplitude;
|
|
this.angle = angle;
|
|
this.octaves = octaves;
|
|
this.seed = seed;
|
|
this._pad1 = _pad1;
|
|
}
|
|
}
|
|
}
|