Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,21 +11,36 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class CurveMap {
[DNAFieldAttribute(0, "short", "totpoint", 2)]
public short totpoint;
[DNAFieldAttribute(1, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(2, "float", "range", 4)]
public float range;
[DNAFieldAttribute(3, "float", "mintable", 4)]
public float mintable;
[DNAFieldAttribute(4, "float", "maxtable", 4)]
public float maxtable;
[DNAFieldAttribute(5, "float", "ext_in[2]", 4)]
public float[] ext_in = new System.Single[2];
[DNAFieldAttribute(6, "float", "ext_out[2]", 4)]
public float[] ext_out = new System.Single[2];
[DNAFieldAttribute(7, "CurveMapPoint", "*curve", 12)]
public CurveMapPoint ptr_curve;
[DNAFieldAttribute(8, "CurveMapPoint", "*table", 12)]
public CurveMapPoint ptr_table;
[DNAFieldAttribute(9, "CurveMapPoint", "*premultable", 12)]
public CurveMapPoint ptr_premultable;
[DNAFieldAttribute(10, "float", "premul_ext_in[2]", 4)]
public float[] premul_ext_in = new System.Single[2];
[DNAFieldAttribute(11, "float", "premul_ext_out[2]", 4)]
public float[] premul_ext_out = new System.Single[2];
[DNAFieldAttribute(12, "short", "default_handle_type", 2)]
public short default_handle_type;
[DNAFieldAttribute(13, "char", "_pad[6]", 1)]
public char[] _pad = new System.Char[6];
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;