item(path_tuple)
→ tuple
of hou.NetworkMovableItem or None
This is like hou.items() but takes multiple paths and returns multiple item objects. See hou.item() for more information.
paths = ["/obj/geo1", "/obj/geo2", "/obj/geo3"] items = hou.items(paths)
This is the equivalent of:
items = [hou.item(path) for path in paths]
Raises hou.NotAvailable if you call it from MPlay.
See also |