Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -43,6 +43,22 @@ namespace BlendFile.DNA {
public short default_handle_type;
[DNAFieldAttribute(13, "char", "_pad[6]", 1)]
public char[] _pad = new System.Char[6];
public CurveMap() {
this.totpoint = default;
this.flag = default;
this.range = default;
this.mintable = default;
this.maxtable = default;
this.ext_in = default;
this.ext_out = default;
this.ptr_curve = default;
this.ptr_table = default;
this.ptr_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) {
this.totpoint = totpoint;
this.flag = flag;