40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(135, "PaintCurve", 224)]
|
|
public class PaintCurve {
|
|
[DNAFieldAttribute(0, "ID", "id", "ID", 208, false)]
|
|
public ID id;
|
|
[DNAFieldAttribute(1, "PaintCurvePoint", "*points", "PaintCurvePoint", 8, true)]
|
|
public PaintCurvePoint ptr_points;
|
|
[DNAFieldAttribute(2, "int", "tot_points", "int", 4, false)]
|
|
public int tot_points;
|
|
[DNAFieldAttribute(3, "int", "add_index", "int", 4, false)]
|
|
public int add_index;
|
|
public PaintCurve() {
|
|
this.id = default;
|
|
this.ptr_points = default;
|
|
this.tot_points = default;
|
|
this.add_index = default;
|
|
}
|
|
public PaintCurve(ID id, PaintCurvePoint ptr_points, int tot_points, int add_index) {
|
|
this.id = id;
|
|
this.ptr_points = ptr_points;
|
|
this.tot_points = tot_points;
|
|
this.add_index = add_index;
|
|
}
|
|
}
|
|
}
|