Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -35,6 +35,18 @@ namespace BlendFile.DNA {
public char[] scriptname = new System.Char[1024];
[DNAFieldAttribute(9, "char", "scriptarg[256]", 1)]
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.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) {
this.id = id;
this.ptr_py_draw = ptr_py_draw;