Generated new code and added initial data handling
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user