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,31 +15,31 @@ namespace BlendFile.DNA {
[DNAClassAttribute(635, "TexMapping", 144)]
public class TexMapping {
[DNAFieldAttribute(0, "float", "loc[3]", "System.Single[]", 12, false)]
[DNAFieldAttribute(0, "float", "loc[3]", "System.Single[]", 12, false, 0)]
public float[] loc = new System.Single[3];
[DNAFieldAttribute(1, "float", "rot[3]", "System.Single[]", 12, false)]
[DNAFieldAttribute(1, "float", "rot[3]", "System.Single[]", 12, false, 12)]
public float[] rot = new System.Single[3];
[DNAFieldAttribute(2, "float", "size[3]", "System.Single[]", 12, false)]
[DNAFieldAttribute(2, "float", "size[3]", "System.Single[]", 12, false, 24)]
public float[] size = new System.Single[3];
[DNAFieldAttribute(3, "int", "flag", "int", 4, false)]
[DNAFieldAttribute(3, "int", "flag", "int", 4, false, 36)]
public int flag;
[DNAFieldAttribute(4, "char", "projx", "char", 1, false)]
[DNAFieldAttribute(4, "char", "projx", "char", 1, false, 40)]
public char projx;
[DNAFieldAttribute(5, "char", "projy", "char", 1, false)]
[DNAFieldAttribute(5, "char", "projy", "char", 1, false, 41)]
public char projy;
[DNAFieldAttribute(6, "char", "projz", "char", 1, false)]
[DNAFieldAttribute(6, "char", "projz", "char", 1, false, 42)]
public char projz;
[DNAFieldAttribute(7, "char", "mapping", "char", 1, false)]
[DNAFieldAttribute(7, "char", "mapping", "char", 1, false, 43)]
public char mapping;
[DNAFieldAttribute(8, "int", "type", "int", 4, false)]
[DNAFieldAttribute(8, "int", "type", "int", 4, false, 44)]
public int type;
[DNAFieldAttribute(9, "float", "mat[4][4]", "System.Single[,]", 64, false)]
[DNAFieldAttribute(9, "float", "mat[4][4]", "System.Single[,]", 64, false, 48)]
public float[,] mat = new System.Single[4,4];
[DNAFieldAttribute(10, "float", "min[3]", "System.Single[]", 12, false)]
[DNAFieldAttribute(10, "float", "min[3]", "System.Single[]", 12, false, 112)]
public float[] min = new System.Single[3];
[DNAFieldAttribute(11, "float", "max[3]", "System.Single[]", 12, false)]
[DNAFieldAttribute(11, "float", "max[3]", "System.Single[]", 12, false, 124)]
public float[] max = new System.Single[3];
[DNAFieldAttribute(12, "Object", "*ob", "Object", 8, true)]
[DNAFieldAttribute(12, "Object", "*ob", "Object", 8, true, 136)]
public Object ptr_ob;
public TexMapping() {
this.loc = default;