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,23 +15,23 @@ namespace BlendFile.DNA {
[DNAClassAttribute(135, "PaintCurve", 224)]
public class PaintCurve {
[DNAFieldAttribute(0, "ID", "id", "ID", 208, false, 0)]
[DNAFieldAttribute(208, "ID", 0, "id", "ID", false, 0)]
public ID id;
[DNAFieldAttribute(1, "PaintCurvePoint", "*points", "PaintCurvePoint", 8, true, 208)]
public PaintCurvePoint ptr_points;
[DNAFieldAttribute(2, "int", "tot_points", "int", 4, false, 216)]
[DNAFieldAttribute(8, "PaintCurvePoint", 1, "*points", "PaintCurvePoint", true, 208)]
public PaintCurvePoint points;
[DNAFieldAttribute(4, "int", 2, "tot_points", "int", false, 216)]
public int tot_points;
[DNAFieldAttribute(3, "int", "add_index", "int", 4, false, 220)]
[DNAFieldAttribute(4, "int", 3, "add_index", "int", false, 220)]
public int add_index;
public PaintCurve() {
this.id = default;
this.ptr_points = default;
this.points = default;
this.tot_points = default;
this.add_index = default;
}
public PaintCurve(ID id, PaintCurvePoint ptr_points, int tot_points, int add_index) {
public PaintCurve(ID id, PaintCurvePoint points, int tot_points, int add_index) {
this.id = id;
this.ptr_points = ptr_points;
this.points = points;
this.tot_points = tot_points;
this.add_index = add_index;
}