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,23 +15,23 @@ namespace BlendFile.DNA {
[DNAClassAttribute(410, "MaskSpline", 224)]
public class MaskSpline {
[DNAFieldAttribute(0, "MaskSpline", "*next", "MaskSpline", 8, true)]
[DNAFieldAttribute(0, "MaskSpline", "*next", "MaskSpline", 8, true, 0)]
public MaskSpline ptr_next;
[DNAFieldAttribute(1, "MaskSpline", "*prev", "MaskSpline", 8, true)]
[DNAFieldAttribute(1, "MaskSpline", "*prev", "MaskSpline", 8, true, 8)]
public MaskSpline ptr_prev;
[DNAFieldAttribute(2, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(2, "short", "flag", "short", 2, false, 16)]
public short flag;
[DNAFieldAttribute(3, "char", "offset_mode", "char", 1, false)]
[DNAFieldAttribute(3, "char", "offset_mode", "char", 1, false, 18)]
public char offset_mode;
[DNAFieldAttribute(4, "char", "weight_interp", "char", 1, false)]
[DNAFieldAttribute(4, "char", "weight_interp", "char", 1, false, 19)]
public char weight_interp;
[DNAFieldAttribute(5, "int", "tot_point", "int", 4, false)]
[DNAFieldAttribute(5, "int", "tot_point", "int", 4, false, 20)]
public int tot_point;
[DNAFieldAttribute(6, "MaskSplinePoint", "*points", "MaskSplinePoint", 8, true)]
[DNAFieldAttribute(6, "MaskSplinePoint", "*points", "MaskSplinePoint", 8, true, 24)]
public MaskSplinePoint ptr_points;
[DNAFieldAttribute(7, "MaskParent", "parent", "MaskParent", 184, false)]
[DNAFieldAttribute(7, "MaskParent", "parent", "MaskParent", 184, false, 32)]
public MaskParent parent;
[DNAFieldAttribute(8, "MaskSplinePoint", "*points_deform", "MaskSplinePoint", 8, true)]
[DNAFieldAttribute(8, "MaskSplinePoint", "*points_deform", "MaskSplinePoint", 8, true, 216)]
public MaskSplinePoint ptr_points_deform;
public MaskSpline() {
this.ptr_next = default;