Files
BlenderSharp/BlendFile/DNA/NodeAntiAliasingData.cs
2025-01-22 02:23:29 +01:00

15 lines
505 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct NodeAntiAliasingData {
public float threshold;
public float contrast_limit;
public float corner_rounding;
public NodeAntiAliasingData(float threshold, float contrast_limit, float corner_rounding) {
this.threshold = threshold;
this.contrast_limit = contrast_limit;
this.corner_rounding = corner_rounding;
}
}
}