Files
BlenderSharp/BlendFile/DNA/LineStyleAlphaModifier_CreaseAngle.cs

34 lines
1.1 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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
namespace BlendFile.DNA {
public class LineStyleAlphaModifier_CreaseAngle {
public LineStyleModifier modifier;
public CurveMapping ptr_curve;
public int flags;
public float min_angle;
public float max_angle;
public char[] _pad = new System.Char[4];
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;
}
}
}