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