Regenerated codefiles
This commit is contained in:
@@ -15,33 +15,33 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(165, "CurveMap", 80)]
|
||||
public class CurveMap {
|
||||
[DNAFieldAttribute(0, "short", "totpoint", "short", 2, false, 0)]
|
||||
[DNAFieldAttribute(2, "short", 0, "totpoint", "short", false, 0)]
|
||||
public short totpoint;
|
||||
[DNAFieldAttribute(1, "short", "flag", "short", 2, false, 2)]
|
||||
[DNAFieldAttribute(2, "short", 1, "flag", "short", false, 2)]
|
||||
public short flag;
|
||||
[DNAFieldAttribute(2, "float", "range", "float", 4, false, 4)]
|
||||
[DNAFieldAttribute(4, "float", 2, "range", "float", false, 4)]
|
||||
public float range;
|
||||
[DNAFieldAttribute(3, "float", "mintable", "float", 4, false, 8)]
|
||||
[DNAFieldAttribute(4, "float", 3, "mintable", "float", false, 8)]
|
||||
public float mintable;
|
||||
[DNAFieldAttribute(4, "float", "maxtable", "float", 4, false, 12)]
|
||||
[DNAFieldAttribute(4, "float", 4, "maxtable", "float", false, 12)]
|
||||
public float maxtable;
|
||||
[DNAFieldAttribute(5, "float", "ext_in[2]", "System.Single[]", 8, false, 16)]
|
||||
[DNAFieldAttribute(8, "float", 5, "ext_in[2]", "System.Single[]", false, 16)]
|
||||
public float[] ext_in = new System.Single[2];
|
||||
[DNAFieldAttribute(6, "float", "ext_out[2]", "System.Single[]", 8, false, 24)]
|
||||
[DNAFieldAttribute(8, "float", 6, "ext_out[2]", "System.Single[]", false, 24)]
|
||||
public float[] ext_out = new System.Single[2];
|
||||
[DNAFieldAttribute(7, "CurveMapPoint", "*curve", "CurveMapPoint", 8, true, 32)]
|
||||
public CurveMapPoint ptr_curve;
|
||||
[DNAFieldAttribute(8, "CurveMapPoint", "*table", "CurveMapPoint", 8, true, 40)]
|
||||
public CurveMapPoint ptr_table;
|
||||
[DNAFieldAttribute(9, "CurveMapPoint", "*premultable", "CurveMapPoint", 8, true, 48)]
|
||||
public CurveMapPoint ptr_premultable;
|
||||
[DNAFieldAttribute(10, "float", "premul_ext_in[2]", "System.Single[]", 8, false, 56)]
|
||||
[DNAFieldAttribute(8, "CurveMapPoint", 7, "*curve", "CurveMapPoint", true, 32)]
|
||||
public CurveMapPoint curve;
|
||||
[DNAFieldAttribute(8, "CurveMapPoint", 8, "*table", "CurveMapPoint", true, 40)]
|
||||
public CurveMapPoint table;
|
||||
[DNAFieldAttribute(8, "CurveMapPoint", 9, "*premultable", "CurveMapPoint", true, 48)]
|
||||
public CurveMapPoint premultable;
|
||||
[DNAFieldAttribute(8, "float", 10, "premul_ext_in[2]", "System.Single[]", false, 56)]
|
||||
public float[] premul_ext_in = new System.Single[2];
|
||||
[DNAFieldAttribute(11, "float", "premul_ext_out[2]", "System.Single[]", 8, false, 64)]
|
||||
[DNAFieldAttribute(8, "float", 11, "premul_ext_out[2]", "System.Single[]", false, 64)]
|
||||
public float[] premul_ext_out = new System.Single[2];
|
||||
[DNAFieldAttribute(12, "short", "default_handle_type", "short", 2, false, 72)]
|
||||
[DNAFieldAttribute(2, "short", 12, "default_handle_type", "short", false, 72)]
|
||||
public short default_handle_type;
|
||||
[DNAFieldAttribute(13, "char", "_pad[6]", "System.Char[]", 6, false, 74)]
|
||||
[DNAFieldAttribute(6, "char", 13, "_pad[6]", "System.Char[]", false, 74)]
|
||||
public char[] _pad = new System.Char[6];
|
||||
public CurveMap() {
|
||||
this.totpoint = default;
|
||||
@@ -51,15 +51,15 @@ namespace BlendFile.DNA {
|
||||
this.maxtable = default;
|
||||
this.ext_in = default;
|
||||
this.ext_out = default;
|
||||
this.ptr_curve = default;
|
||||
this.ptr_table = default;
|
||||
this.ptr_premultable = default;
|
||||
this.curve = default;
|
||||
this.table = default;
|
||||
this.premultable = default;
|
||||
this.premul_ext_in = default;
|
||||
this.premul_ext_out = default;
|
||||
this.default_handle_type = default;
|
||||
this._pad = default;
|
||||
}
|
||||
public CurveMap(short totpoint, short flag, float range, float mintable, float maxtable, float[] ext_in, float[] ext_out, CurveMapPoint ptr_curve, CurveMapPoint ptr_table, CurveMapPoint ptr_premultable, float[] premul_ext_in, float[] premul_ext_out, short default_handle_type, char[] _pad) {
|
||||
public CurveMap(short totpoint, short flag, float range, float mintable, float maxtable, float[] ext_in, float[] ext_out, CurveMapPoint curve, CurveMapPoint table, CurveMapPoint premultable, float[] premul_ext_in, float[] premul_ext_out, short default_handle_type, char[] _pad) {
|
||||
this.totpoint = totpoint;
|
||||
this.flag = flag;
|
||||
this.range = range;
|
||||
@@ -67,9 +67,9 @@ namespace BlendFile.DNA {
|
||||
this.maxtable = maxtable;
|
||||
this.ext_in = ext_in;
|
||||
this.ext_out = ext_out;
|
||||
this.ptr_curve = ptr_curve;
|
||||
this.ptr_table = ptr_table;
|
||||
this.ptr_premultable = ptr_premultable;
|
||||
this.curve = curve;
|
||||
this.table = table;
|
||||
this.premultable = premultable;
|
||||
this.premul_ext_in = premul_ext_in;
|
||||
this.premul_ext_out = premul_ext_out;
|
||||
this.default_handle_type = default_handle_type;
|
||||
|
||||
Reference in New Issue
Block a user