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,19 +15,19 @@ namespace BlendFile.DNA {
[DNAClassAttribute(424, "MFace", 20)]
public struct MFace {
[DNAFieldAttribute(0, "int", "v1", "int", 4, false)]
[DNAFieldAttribute(0, "int", "v1", "int", 4, false, 0)]
public int v1;
[DNAFieldAttribute(1, "int", "v2", "int", 4, false)]
[DNAFieldAttribute(1, "int", "v2", "int", 4, false, 4)]
public int v2;
[DNAFieldAttribute(2, "int", "v3", "int", 4, false)]
[DNAFieldAttribute(2, "int", "v3", "int", 4, false, 8)]
public int v3;
[DNAFieldAttribute(3, "int", "v4", "int", 4, false)]
[DNAFieldAttribute(3, "int", "v4", "int", 4, false, 12)]
public int v4;
[DNAFieldAttribute(4, "short", "mat_nr", "short", 2, false)]
[DNAFieldAttribute(4, "short", "mat_nr", "short", 2, false, 16)]
public short mat_nr;
[DNAFieldAttribute(5, "char", "edcode", "char", 1, false)]
[DNAFieldAttribute(5, "char", "edcode", "char", 1, false, 18)]
public char edcode;
[DNAFieldAttribute(6, "char", "flag", "char", 1, false)]
[DNAFieldAttribute(6, "char", "flag", "char", 1, false, 19)]
public char flag;
public MFace() {
this.v1 = default;