Quellcode durchsuchen

Fix: I_O for some schema types was not working

because I just simply forgot to add them to the type list
Joseph Brandenburg vor 2 Monaten
Ursprung
Commit
04fed091e2
1 geänderte Dateien mit 3 neuen und 0 gelöschten Zeilen
  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",