Houdini 20.0 hapi

hapi.getComposedChildNodeList function

Get the composed list of child node ids from the previous call

Usage

getComposedChildNodeList(session: hapi.Session, parent_node_id: int, count: int) → list of int

Get the composed list of child node ids from the previous call to hapi.composeChildNodeList.

session

The session of Houdini you are interacting with. See hapi.Session for more on sessions. Pass None to just use the default in-process session.

parent_node_id

The node id of the parent node.

count

The number of children in the composed list. MUST match the count returned by hapi.composeChildNodeList.

Returns child_node_ids_array as a list of int.

hapi