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

18
BlendFile/DNA/UvSculpt.cs Normal file
View File

@@ -0,0 +1,18 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class UvSculpt {
public CurveMapping ptr_strength_curve;
public int size;
public float strength;
public int8_t curve_preset;
public char[] _pad = new System.Char[7];
public UvSculpt(CurveMapping ptr_strength_curve, int size, float strength, int8_t curve_preset, char[] _pad) {
this.ptr_strength_curve = ptr_strength_curve;
this.size = size;
this.strength = strength;
this.curve_preset = curve_preset;
this._pad = _pad;
}
}
}