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,24 +15,24 @@ namespace BlendFile.DNA {
[DNAClassAttribute(422, "TFace", 64)]
public class TFace {
[DNAFieldAttribute(0, "void", "*tpage", "void", 8, true, 0)]
public object ptr_tpage;
[DNAFieldAttribute(1, "float", "uv[4][2]", "System.Single[,]", 32, false, 8)]
[DNAFieldAttribute(8, "void", 0, "*tpage", "void", true, 0)]
public object tpage;
[DNAFieldAttribute(32, "float", 1, "uv[4][2]", "System.Single[,]", false, 8)]
public float[,] uv = new System.Single[4,2];
[DNAFieldAttribute(2, "int", "col[4]", "System.Int32[]", 16, false, 40)]
[DNAFieldAttribute(16, "int", 2, "col[4]", "System.Int32[]", false, 40)]
public int[] col = new System.Int32[4];
[DNAFieldAttribute(3, "char", "flag", "char", 1, false, 56)]
[DNAFieldAttribute(1, "char", 3, "flag", "char", false, 56)]
public char flag;
[DNAFieldAttribute(4, "char", "transp", "char", 1, false, 57)]
[DNAFieldAttribute(1, "char", 4, "transp", "char", false, 57)]
public char transp;
[DNAFieldAttribute(5, "short", "mode", "short", 2, false, 58)]
[DNAFieldAttribute(2, "short", 5, "mode", "short", false, 58)]
public short mode;
[DNAFieldAttribute(6, "short", "tile", "short", 2, false, 60)]
[DNAFieldAttribute(2, "short", 6, "tile", "short", false, 60)]
public short tile;
[DNAFieldAttribute(7, "short", "unwrap", "short", 2, false, 62)]
[DNAFieldAttribute(2, "short", 7, "unwrap", "short", false, 62)]
public short unwrap;
public TFace() {
this.ptr_tpage = default;
this.tpage = default;
this.uv = default;
this.col = default;
this.flag = default;
@@ -41,8 +41,8 @@ namespace BlendFile.DNA {
this.tile = default;
this.unwrap = default;
}
public TFace(object ptr_tpage, float[,] uv, int[] col, char flag, char transp, short mode, short tile, short unwrap) {
this.ptr_tpage = ptr_tpage;
public TFace(object tpage, float[,] uv, int[] col, char flag, char transp, short mode, short tile, short unwrap) {
this.tpage = tpage;
this.uv = uv;
this.col = col;
this.flag = flag;