Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -41,6 +41,21 @@ namespace BlendFile.DNA {
public float[] max = new System.Single[3];
[DNAFieldAttribute(12, "Object", "*ob", 1160)]
public Object ptr_ob;
public TexMapping() {
this.loc = default;
this.rot = default;
this.size = default;
this.flag = default;
this.projx = default;
this.projy = default;
this.projz = default;
this.mapping = default;
this.type = default;
this.mat = default;
this.min = default;
this.max = default;
this.ptr_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) {
this.loc = loc;
this.rot = rot;