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,15 +11,24 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class TFace {
[DNAFieldAttribute(0, "void", "*tpage", 0)]
public object ptr_tpage;
[DNAFieldAttribute(1, "float", "uv[4][2]", 4)]
public float[,] uv = new System.Single[4,2];
[DNAFieldAttribute(2, "int", "col[4]", 4)]
public int[] col = new System.Int32[4];
[DNAFieldAttribute(3, "char", "flag", 1)]
public char flag;
[DNAFieldAttribute(4, "char", "transp", 1)]
public char transp;
[DNAFieldAttribute(5, "short", "mode", 2)]
public short mode;
[DNAFieldAttribute(6, "short", "tile", 2)]
public short tile;
[DNAFieldAttribute(7, "short", "unwrap", 2)]
public short unwrap;
public TFace(object ptr_tpage, float[,] uv, int[] col, char flag, char transp, short mode, short tile, short unwrap) {
this.ptr_tpage = ptr_tpage;