Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,20 +11,34 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class TexMapping {
[DNAFieldAttribute(0, "float", "loc[3]", 4)]
public float[] loc = new System.Single[3];
[DNAFieldAttribute(1, "float", "rot[3]", 4)]
public float[] rot = new System.Single[3];
[DNAFieldAttribute(2, "float", "size[3]", 4)]
public float[] size = new System.Single[3];
[DNAFieldAttribute(3, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(4, "char", "projx", 1)]
public char projx;
[DNAFieldAttribute(5, "char", "projy", 1)]
public char projy;
[DNAFieldAttribute(6, "char", "projz", 1)]
public char projz;
[DNAFieldAttribute(7, "char", "mapping", 1)]
public char mapping;
[DNAFieldAttribute(8, "int", "type", 4)]
public int type;
[DNAFieldAttribute(9, "float", "mat[4][4]", 4)]
public float[,] mat = new System.Single[4,4];
[DNAFieldAttribute(10, "float", "min[3]", 4)]
public float[] min = new System.Single[3];
[DNAFieldAttribute(11, "float", "max[3]", 4)]
public float[] max = new System.Single[3];
[DNAFieldAttribute(12, "Object", "*ob", 1160)]
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;