Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct CurvePaintSettings {
public char curve_type;
public char flag;
public char depth_mode;
public char surface_plane;
public char fit_method;
public char _pad;
public short error_threshold;
public float radius_min;
public float radius_max;
public float radius_taper_start;
public float radius_taper_end;
public float surface_offset;
public float corner_angle;
public CurvePaintSettings(char curve_type, char flag, char depth_mode, char surface_plane, char fit_method, char _pad, short error_threshold, float radius_min, float radius_max, float radius_taper_start, float radius_taper_end, float surface_offset, float corner_angle) {
this.curve_type = curve_type;
this.flag = flag;
this.depth_mode = depth_mode;
this.surface_plane = surface_plane;
this.fit_method = fit_method;
this._pad = _pad;
this.error_threshold = error_threshold;
this.radius_min = radius_min;
this.radius_max = radius_max;
this.radius_taper_start = radius_taper_start;
this.radius_taper_end = radius_taper_end;
this.surface_offset = surface_offset;
this.corner_angle = corner_angle;
}
}
}