48 lines
1.9 KiB
C#
48 lines
1.9 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(381, "LineStyleAlphaModifier_CreaseAngle")]
|
|
public class LineStyleAlphaModifier_CreaseAngle {
|
|
[DNAFieldAttribute(0, "LineStyleModifier", "modifier", "LineStyleModifier", 96, false)]
|
|
public LineStyleModifier modifier;
|
|
[DNAFieldAttribute(1, "CurveMapping", "*curve", "CurveMapping", 4, true)]
|
|
public CurveMapping ptr_curve;
|
|
[DNAFieldAttribute(2, "int", "flags", "int", 4, false)]
|
|
public int flags;
|
|
[DNAFieldAttribute(3, "float", "min_angle", "float", 4, false)]
|
|
public float min_angle;
|
|
[DNAFieldAttribute(4, "float", "max_angle", "float", 4, false)]
|
|
public float max_angle;
|
|
[DNAFieldAttribute(5, "char", "_pad[4]", "System.Char[]", 4, false)]
|
|
public char[] _pad = new System.Char[4];
|
|
public LineStyleAlphaModifier_CreaseAngle() {
|
|
this.modifier = default;
|
|
this.ptr_curve = default;
|
|
this.flags = default;
|
|
this.min_angle = default;
|
|
this.max_angle = default;
|
|
this._pad = default;
|
|
}
|
|
public LineStyleAlphaModifier_CreaseAngle(LineStyleModifier modifier, CurveMapping ptr_curve, int flags, float min_angle, float max_angle, char[] _pad) {
|
|
this.modifier = modifier;
|
|
this.ptr_curve = ptr_curve;
|
|
this.flags = flags;
|
|
this.min_angle = min_angle;
|
|
this.max_angle = max_angle;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|