Files
BlenderSharp/BlendFile/DNA/PaintCurve.cs
2025-02-18 18:16:57 +01:00

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")]
public class PaintCurve {
[DNAFieldAttribute(0, "ID", "id", "ID", 208)]
public ID id;
[DNAFieldAttribute(1, "PaintCurvePoint", "*points", "PaintCurvePoint", 76)]
public PaintCurvePoint ptr_points;
[DNAFieldAttribute(2, "int", "tot_points", "int", 4)]
public int tot_points;
[DNAFieldAttribute(3, "int", "add_index", "int", 4)]
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;
}
}
}