15 lines
505 B
C#
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;
|
|
}
|
|
}
|
|
}
|