소스 검색

Fix: I_O for some schema types was not working

because I just simply forgot to add them to the type list
Joseph Brandenburg 2 달 전
부모
커밋
04fed091e2
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      i_o.py

+ 3 - 0
i_o.py

@@ -495,6 +495,8 @@ def get_link_sockets(link, tree, tree_socket_id_map):
     id1 = from_socket_id
     if hasattr(from_node, "node_tree") or \
         from_node.bl_idname in ["SchemaArrayInput",
+                                "SchemaArrayInputGet",
+                                "SchemaArrayInputAll",
                                 "SchemaConstInput",
                                 "SchemaIncomingConnection", ]: # now we have to map by something else
                 try:
@@ -780,6 +782,7 @@ def do_import(data, context):
 
             if n.bl_idname in [ "SchemaArrayInput",
                                 "SchemaArrayInputGet",
+                                "SchemaArrayInputAll",
                                 "SchemaArrayOutput",
                                 "SchemaConstInput",
                                 "SchemaConstOutput",