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,17 +15,17 @@ namespace BlendFile.DNA {
[DNAClassAttribute(973, "TextLine", 40)]
public class TextLine {
[DNAFieldAttribute(0, "TextLine", "*next", "TextLine", 8, true)]
[DNAFieldAttribute(0, "TextLine", "*next", "TextLine", 8, true, 0)]
public TextLine ptr_next;
[DNAFieldAttribute(1, "TextLine", "*prev", "TextLine", 8, true)]
[DNAFieldAttribute(1, "TextLine", "*prev", "TextLine", 8, true, 8)]
public TextLine ptr_prev;
[DNAFieldAttribute(2, "char", "*line", "char", 8, true)]
[DNAFieldAttribute(2, "char", "*line", "char", 8, true, 16)]
public char ptr_line;
[DNAFieldAttribute(3, "char", "*format", "char", 8, true)]
[DNAFieldAttribute(3, "char", "*format", "char", 8, true, 24)]
public char ptr_format;
[DNAFieldAttribute(4, "int", "len", "int", 4, false)]
[DNAFieldAttribute(4, "int", "len", "int", 4, false, 32)]
public int len;
[DNAFieldAttribute(5, "char", "_pad0[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(5, "char", "_pad0[4]", "System.Char[]", 4, false, 36)]
public char[] _pad0 = new System.Char[4];
public TextLine() {
this.ptr_next = default;