Added Type stubbing

This commit is contained in:
Samuele Lorefice
2025-01-22 17:56:49 +01:00
parent 2d6159e331
commit 9a949dbeab
112 changed files with 610 additions and 313 deletions

View File

@@ -22,10 +22,10 @@ namespace BlendFile.DNA {
public float minimum_distance;
public float curve_radius;
public int density_add_attempts;
public uchar density_mode;
public byte density_mode;
public char[] _pad = new System.Char[7];
public CurveMapping ptr_curve_parameter_falloff;
public BrushCurvesSculptSettings(int add_amount, int points_per_curve, int flag, float minimum_length, float curve_length, float minimum_distance, float curve_radius, int density_add_attempts, uchar density_mode, char[] _pad, CurveMapping ptr_curve_parameter_falloff) {
public BrushCurvesSculptSettings(int add_amount, int points_per_curve, int flag, float minimum_length, float curve_length, float minimum_distance, float curve_radius, int density_add_attempts, byte density_mode, char[] _pad, CurveMapping ptr_curve_parameter_falloff) {
this.add_amount = add_amount;
this.points_per_curve = points_per_curve;
this.flag = flag;