Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class TexMapping {
public float[] loc = new System.Single[3];
public float[] rot = new System.Single[3];
public float[] size = new System.Single[3];
public int flag;
public char projx;
public char projy;
public char projz;
public char mapping;
public int type;
public float[,] mat = new System.Single[4][4];
public float[] min = new System.Single[3];
public float[] max = new System.Single[3];
public 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 ptr_ob) {
this.loc = loc;
this.rot = rot;
this.size = size;
this.flag = flag;
this.projx = projx;
this.projy = projy;
this.projz = projz;
this.mapping = mapping;
this.type = type;
this.mat = mat;
this.min = min;
this.max = max;
this.ptr_ob = ptr_ob;
}
}
}