Generated new code and added initial data handling
This commit is contained in:
@@ -31,6 +31,16 @@ namespace BlendFile.DNA {
|
||||
public int flag;
|
||||
[DNAFieldAttribute(7, "int", "multi_input_socket_index", 4)]
|
||||
public int multi_input_socket_index;
|
||||
public bNodeLink() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.ptr_fromnode = default;
|
||||
this.ptr_tonode = default;
|
||||
this.ptr_fromsock = default;
|
||||
this.ptr_tosock = default;
|
||||
this.flag = default;
|
||||
this.multi_input_socket_index = default;
|
||||
}
|
||||
public bNodeLink(bNodeLink ptr_next, bNodeLink ptr_prev, bNode ptr_fromnode, bNode ptr_tonode, bNodeSocket ptr_fromsock, bNodeSocket ptr_tosock, int flag, int multi_input_socket_index) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
|
||||
Reference in New Issue
Block a user