Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,27 +15,27 @@ namespace BlendFile.DNA {
[DNAClassAttribute(130, "BrushCurvesSculptSettings", 48)]
public class BrushCurvesSculptSettings {
[DNAFieldAttribute(0, "int", "add_amount", "int", 4, false)]
[DNAFieldAttribute(0, "int", "add_amount", "int", 4, false, 0)]
public int add_amount;
[DNAFieldAttribute(1, "int", "points_per_curve", "int", 4, false)]
[DNAFieldAttribute(1, "int", "points_per_curve", "int", 4, false, 4)]
public int points_per_curve;
[DNAFieldAttribute(2, "int", "flag", "int", 4, false)]
[DNAFieldAttribute(2, "int", "flag", "int", 4, false, 8)]
public int flag;
[DNAFieldAttribute(3, "float", "minimum_length", "float", 4, false)]
[DNAFieldAttribute(3, "float", "minimum_length", "float", 4, false, 12)]
public float minimum_length;
[DNAFieldAttribute(4, "float", "curve_length", "float", 4, false)]
[DNAFieldAttribute(4, "float", "curve_length", "float", 4, false, 16)]
public float curve_length;
[DNAFieldAttribute(5, "float", "minimum_distance", "float", 4, false)]
[DNAFieldAttribute(5, "float", "minimum_distance", "float", 4, false, 20)]
public float minimum_distance;
[DNAFieldAttribute(6, "float", "curve_radius", "float", 4, false)]
[DNAFieldAttribute(6, "float", "curve_radius", "float", 4, false, 24)]
public float curve_radius;
[DNAFieldAttribute(7, "int", "density_add_attempts", "int", 4, false)]
[DNAFieldAttribute(7, "int", "density_add_attempts", "int", 4, false, 28)]
public int density_add_attempts;
[DNAFieldAttribute(8, "uchar", "density_mode", "uchar", 1, false)]
[DNAFieldAttribute(8, "uchar", "density_mode", "uchar", 1, false, 32)]
public byte density_mode;
[DNAFieldAttribute(9, "char", "_pad[7]", "System.Char[]", 7, false)]
[DNAFieldAttribute(9, "char", "_pad[7]", "System.Char[]", 7, false, 33)]
public char[] _pad = new System.Char[7];
[DNAFieldAttribute(10, "CurveMapping", "*curve_parameter_falloff", "CurveMapping", 8, true)]
[DNAFieldAttribute(10, "CurveMapping", "*curve_parameter_falloff", "CurveMapping", 8, true, 40)]
public CurveMapping ptr_curve_parameter_falloff;
public BrushCurvesSculptSettings() {
this.add_amount = default;