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(235, "BuildEff", 32)]
public class BuildEff {
[DNAFieldAttribute(0, "BuildEff", "*next", "BuildEff", 8, true)]
[DNAFieldAttribute(0, "BuildEff", "*next", "BuildEff", 8, true, 0)]
public BuildEff ptr_next;
[DNAFieldAttribute(1, "BuildEff", "*prev", "BuildEff", 8, true)]
[DNAFieldAttribute(1, "BuildEff", "*prev", "BuildEff", 8, true, 8)]
public BuildEff ptr_prev;
[DNAFieldAttribute(2, "short", "type", "short", 2, false)]
[DNAFieldAttribute(2, "short", "type", "short", 2, false, 16)]
public short type;
[DNAFieldAttribute(3, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(3, "short", "flag", "short", 2, false, 18)]
public short flag;
[DNAFieldAttribute(4, "short", "buttype", "short", 2, false)]
[DNAFieldAttribute(4, "short", "buttype", "short", 2, false, 20)]
public short buttype;
[DNAFieldAttribute(5, "char", "_pad0[2]", "System.Char[]", 2, false)]
[DNAFieldAttribute(5, "char", "_pad0[2]", "System.Char[]", 2, false, 22)]
public char[] _pad0 = new System.Char[2];
[DNAFieldAttribute(6, "float", "len", "float", 4, false)]
[DNAFieldAttribute(6, "float", "len", "float", 4, false, 24)]
public float len;
[DNAFieldAttribute(7, "float", "sfra", "float", 4, false)]
[DNAFieldAttribute(7, "float", "sfra", "float", 4, false, 28)]
public float sfra;
public BuildEff() {
this.ptr_next = default;