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(76, "Ipo", 248)]
public struct Ipo {
[DNAFieldAttribute(0, "ID", "id", "ID", 208, false)]
[DNAFieldAttribute(0, "ID", "id", "ID", 208, false, 0)]
public ID id;
[DNAFieldAttribute(1, "ListBase", "curve", "ListBase", 16, false)]
[DNAFieldAttribute(1, "ListBase", "curve", "ListBase", 16, false, 208)]
public ListBase curve;
[DNAFieldAttribute(2, "rctf", "cur", "rctf", 16, false)]
[DNAFieldAttribute(2, "rctf", "cur", "rctf", 16, false, 224)]
public rctf cur;
[DNAFieldAttribute(3, "short", "blocktype", "short", 2, false)]
[DNAFieldAttribute(3, "short", "blocktype", "short", 2, false, 240)]
public short blocktype;
[DNAFieldAttribute(4, "short", "showkey", "short", 2, false)]
[DNAFieldAttribute(4, "short", "showkey", "short", 2, false, 242)]
public short showkey;
[DNAFieldAttribute(5, "short", "muteipo", "short", 2, false)]
[DNAFieldAttribute(5, "short", "muteipo", "short", 2, false, 244)]
public short muteipo;
[DNAFieldAttribute(6, "char", "_pad[2]", "System.Char[]", 2, false)]
[DNAFieldAttribute(6, "char", "_pad[2]", "System.Char[]", 2, false, 246)]
public char[] _pad = new System.Char[2];
public Ipo() {
this.id = default;