Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,25 +15,25 @@ namespace BlendFile.DNA {
[DNAClassAttribute(814, "UvSculpt", 24)]
public class UvSculpt {
[DNAFieldAttribute(0, "CurveMapping", "*strength_curve", "CurveMapping", 8, true, 0)]
public CurveMapping ptr_strength_curve;
[DNAFieldAttribute(1, "int", "size", "int", 4, false, 8)]
[DNAFieldAttribute(8, "CurveMapping", 0, "*strength_curve", "CurveMapping", true, 0)]
public CurveMapping strength_curve;
[DNAFieldAttribute(4, "int", 1, "size", "int", false, 8)]
public int size;
[DNAFieldAttribute(2, "float", "strength", "float", 4, false, 12)]
[DNAFieldAttribute(4, "float", 2, "strength", "float", false, 12)]
public float strength;
[DNAFieldAttribute(3, "int8_t", "curve_preset", "int8_t", 1, false, 16)]
[DNAFieldAttribute(1, "int8_t", 3, "curve_preset", "int8_t", false, 16)]
public sbyte curve_preset;
[DNAFieldAttribute(4, "char", "_pad[7]", "System.Char[]", 7, false, 17)]
[DNAFieldAttribute(7, "char", 4, "_pad[7]", "System.Char[]", false, 17)]
public char[] _pad = new System.Char[7];
public UvSculpt() {
this.ptr_strength_curve = default;
this.strength_curve = default;
this.size = default;
this.strength = default;
this.curve_preset = default;
this._pad = default;
}
public UvSculpt(CurveMapping ptr_strength_curve, int size, float strength, sbyte curve_preset, char[] _pad) {
this.ptr_strength_curve = ptr_strength_curve;
public UvSculpt(CurveMapping strength_curve, int size, float strength, sbyte curve_preset, char[] _pad) {
this.strength_curve = strength_curve;
this.size = size;
this.strength = strength;
this.curve_preset = curve_preset;