Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

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