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,25 +15,25 @@ namespace BlendFile.DNA {
[DNAClassAttribute(953, "Script", 1536)]
public class Script {
[DNAFieldAttribute(0, "ID", "id", "ID", 208, false)]
[DNAFieldAttribute(0, "ID", "id", "ID", 208, false, 0)]
public ID id;
[DNAFieldAttribute(1, "void", "*py_draw", "void", 8, true)]
[DNAFieldAttribute(1, "void", "*py_draw", "void", 8, true, 208)]
public object ptr_py_draw;
[DNAFieldAttribute(2, "void", "*py_event", "void", 8, true)]
[DNAFieldAttribute(2, "void", "*py_event", "void", 8, true, 216)]
public object ptr_py_event;
[DNAFieldAttribute(3, "void", "*py_button", "void", 8, true)]
[DNAFieldAttribute(3, "void", "*py_button", "void", 8, true, 224)]
public object ptr_py_button;
[DNAFieldAttribute(4, "void", "*py_browsercallback", "void", 8, true)]
[DNAFieldAttribute(4, "void", "*py_browsercallback", "void", 8, true, 232)]
public object ptr_py_browsercallback;
[DNAFieldAttribute(5, "void", "*py_globaldict", "void", 8, true)]
[DNAFieldAttribute(5, "void", "*py_globaldict", "void", 8, true, 240)]
public object ptr_py_globaldict;
[DNAFieldAttribute(6, "int", "flags", "int", 4, false)]
[DNAFieldAttribute(6, "int", "flags", "int", 4, false, 248)]
public int flags;
[DNAFieldAttribute(7, "int", "lastspace", "int", 4, false)]
[DNAFieldAttribute(7, "int", "lastspace", "int", 4, false, 252)]
public int lastspace;
[DNAFieldAttribute(8, "char", "scriptname[1024]", "System.Char[]", 1024, false)]
[DNAFieldAttribute(8, "char", "scriptname[1024]", "System.Char[]", 1024, false, 256)]
public char[] scriptname = new System.Char[1024];
[DNAFieldAttribute(9, "char", "scriptarg[256]", "System.Char[]", 256, false)]
[DNAFieldAttribute(9, "char", "scriptarg[256]", "System.Char[]", 256, false, 1280)]
public char[] scriptarg = new System.Char[256];
public Script() {
this.id = default;