- Added auto generation of DNAClass attributes on file generation - Regenerated all files
34 lines
1.1 KiB
C#
34 lines
1.1 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", 208)]
|
|
public ID id;
|
|
[DNAFieldAttribute(1, "PaintCurvePoint", "*points", 76)]
|
|
public PaintCurvePoint ptr_points;
|
|
[DNAFieldAttribute(2, "int", "tot_points", 4)]
|
|
public int tot_points;
|
|
[DNAFieldAttribute(3, "int", "add_index", 4)]
|
|
public int add_index;
|
|
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;
|
|
}
|
|
}
|
|
}
|