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,27 +15,27 @@ namespace BlendFile.DNA {
[DNAClassAttribute(175, "Text", 280)]
public class Text {
[DNAFieldAttribute(0, "ID", "id", "ID", 208, false)]
[DNAFieldAttribute(0, "ID", "id", "ID", 208, false, 0)]
public ID id;
[DNAFieldAttribute(1, "char", "*name", "char", 8, true)]
[DNAFieldAttribute(1, "char", "*name", "char", 8, true, 208)]
public char ptr_name;
[DNAFieldAttribute(2, "void", "*compiled", "void", 8, true)]
[DNAFieldAttribute(2, "void", "*compiled", "void", 8, true, 216)]
public object ptr_compiled;
[DNAFieldAttribute(3, "int", "flags", "int", 4, false)]
[DNAFieldAttribute(3, "int", "flags", "int", 4, false, 224)]
public int flags;
[DNAFieldAttribute(4, "char", "_pad0[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(4, "char", "_pad0[4]", "System.Char[]", 4, false, 228)]
public char[] _pad0 = new System.Char[4];
[DNAFieldAttribute(5, "ListBase", "lines", "ListBase", 16, false)]
[DNAFieldAttribute(5, "ListBase", "lines", "ListBase", 16, false, 232)]
public ListBase lines;
[DNAFieldAttribute(6, "TextLine", "*curl", "TextLine", 8, true)]
[DNAFieldAttribute(6, "TextLine", "*curl", "TextLine", 8, true, 248)]
public TextLine ptr_curl;
[DNAFieldAttribute(7, "TextLine", "*sell", "TextLine", 8, true)]
[DNAFieldAttribute(7, "TextLine", "*sell", "TextLine", 8, true, 256)]
public TextLine ptr_sell;
[DNAFieldAttribute(8, "int", "curc", "int", 4, false)]
[DNAFieldAttribute(8, "int", "curc", "int", 4, false, 264)]
public int curc;
[DNAFieldAttribute(9, "int", "selc", "int", 4, false)]
[DNAFieldAttribute(9, "int", "selc", "int", 4, false, 268)]
public int selc;
[DNAFieldAttribute(10, "double", "mtime", "double", 8, false)]
[DNAFieldAttribute(10, "double", "mtime", "double", 8, false, 272)]
public double mtime;
public Text() {
this.id = default;