Regenerated codefiles
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user