nodes(path_tuple)
  → tuple
 of hou.OpNode
                
            
This is like hou.node() but takes multiple paths and returns multiple node objects. See hou.node() for more information.
paths = ["/obj/geo1", "/obj/geo2", "/obj/geo3"] nodes = hou.nodes(paths)
This is the equivalent of:
nodes = [hou.node(path) for path in paths]
| See also |