48 lines
2.0 KiB
C#
48 lines
2.0 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(375, "LineStyleAlphaModifier_Curvature_3D", 120)]
|
|
public class LineStyleAlphaModifier_Curvature_3D {
|
|
[DNAFieldAttribute(0, "LineStyleModifier", "modifier", "LineStyleModifier", 96, false, 0)]
|
|
public LineStyleModifier modifier;
|
|
[DNAFieldAttribute(1, "CurveMapping", "*curve", "CurveMapping", 8, true, 96)]
|
|
public CurveMapping ptr_curve;
|
|
[DNAFieldAttribute(2, "int", "flags", "int", 4, false, 104)]
|
|
public int flags;
|
|
[DNAFieldAttribute(3, "float", "min_curvature", "float", 4, false, 108)]
|
|
public float min_curvature;
|
|
[DNAFieldAttribute(4, "float", "max_curvature", "float", 4, false, 112)]
|
|
public float max_curvature;
|
|
[DNAFieldAttribute(5, "char", "_pad[4]", "System.Char[]", 4, false, 116)]
|
|
public char[] _pad = new System.Char[4];
|
|
public LineStyleAlphaModifier_Curvature_3D() {
|
|
this.modifier = default;
|
|
this.ptr_curve = default;
|
|
this.flags = default;
|
|
this.min_curvature = default;
|
|
this.max_curvature = default;
|
|
this._pad = default;
|
|
}
|
|
public LineStyleAlphaModifier_Curvature_3D(LineStyleModifier modifier, CurveMapping ptr_curve, int flags, float min_curvature, float max_curvature, char[] _pad) {
|
|
this.modifier = modifier;
|
|
this.ptr_curve = ptr_curve;
|
|
this.flags = flags;
|
|
this.min_curvature = min_curvature;
|
|
this.max_curvature = max_curvature;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|