Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

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