Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,16 +11,26 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class MaskSpline {
[DNAFieldAttribute(0, "MaskSpline", "*next", 224)]
public MaskSpline ptr_next;
[DNAFieldAttribute(1, "MaskSpline", "*prev", 224)]
public MaskSpline ptr_prev;
[DNAFieldAttribute(2, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(3, "char", "offset_mode", 1)]
public char offset_mode;
[DNAFieldAttribute(4, "char", "weight_interp", 1)]
public char weight_interp;
[DNAFieldAttribute(5, "int", "tot_point", 4)]
public int tot_point;
[DNAFieldAttribute(6, "MaskSplinePoint", "*points", 272)]
public MaskSplinePoint ptr_points;
[DNAFieldAttribute(7, "MaskParent", "parent", 184)]
public MaskParent parent;
[DNAFieldAttribute(8, "MaskSplinePoint", "*points_deform", 272)]
public MaskSplinePoint ptr_points_deform;
public MaskSpline(MaskSpline ptr_next, MaskSpline ptr_prev, short flag, char offset_mode, char weight_interp, int tot_point, MaskSplinePoint ptr_points, MaskParent parent, MaskSplinePoint ptr_points_deform) {
this.ptr_next = ptr_next;