Files
BlenderSharp/BlendFile/DNA/LineStyleAlphaModifier_CreaseAngle.cs
2025-02-18 18:16:57 +01:00

48 lines
1.8 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)]
public LineStyleModifier modifier;
[DNAFieldAttribute(1, "CurveMapping", "*curve", "CurveMapping", 424)]
public CurveMapping ptr_curve;
[DNAFieldAttribute(2, "int", "flags", "int", 4)]
public int flags;
[DNAFieldAttribute(3, "float", "min_angle", "float", 4)]
public float min_angle;
[DNAFieldAttribute(4, "float", "max_angle", "float", 4)]
public float max_angle;
[DNAFieldAttribute(5, "char", "_pad[4]", "System.Char[]", 1)]
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;
}
}
}