Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

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