Files
BlenderSharp/BlendFile/DNA/TexMapping.cs
2025-01-22 20:24:55 +01:00

60 lines
2.2 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
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;
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;
}
}
}