Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -41,6 +41,21 @@ namespace BlendFile.DNA {
public float surface_offset;
[DNAFieldAttribute(12, "float", "corner_angle", 4)]
public float corner_angle;
public CurvePaintSettings() {
this.curve_type = default;
this.flag = default;
this.depth_mode = default;
this.surface_plane = default;
this.fit_method = default;
this._pad = default;
this.error_threshold = default;
this.radius_min = default;
this.radius_max = default;
this.radius_taper_start = default;
this.radius_taper_end = default;
this.surface_offset = default;
this.corner_angle = default;
}
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;