40 lines
1.5 KiB
C#
40 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(380, "LineStyleColorModifier_CreaseAngle", 112)]
|
|
public class LineStyleColorModifier_CreaseAngle {
|
|
[DNAFieldAttribute(96, "LineStyleModifier", 0, "modifier", "LineStyleModifier", false, 0)]
|
|
public LineStyleModifier modifier;
|
|
[DNAFieldAttribute(8, "ColorBand", 1, "*color_ramp", "ColorBand", true, 96)]
|
|
public ColorBand color_ramp;
|
|
[DNAFieldAttribute(4, "float", 2, "min_angle", "float", false, 104)]
|
|
public float min_angle;
|
|
[DNAFieldAttribute(4, "float", 3, "max_angle", "float", false, 108)]
|
|
public float max_angle;
|
|
public LineStyleColorModifier_CreaseAngle() {
|
|
this.modifier = default;
|
|
this.color_ramp = default;
|
|
this.min_angle = default;
|
|
this.max_angle = default;
|
|
}
|
|
public LineStyleColorModifier_CreaseAngle(LineStyleModifier modifier, ColorBand color_ramp, float min_angle, float max_angle) {
|
|
this.modifier = modifier;
|
|
this.color_ramp = color_ramp;
|
|
this.min_angle = min_angle;
|
|
this.max_angle = max_angle;
|
|
}
|
|
}
|
|
}
|