Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

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