Usage ¶
getHandleBindingInfo(session
: hapi.Session, node_id
: int
, handle_index
: int
, start
: int
, length
: int
) → list
of hapi.HandleBindingInfo
Fill an array of hapi.HandleBindingInfo structs with information about the binding of a particular handle on the given node.
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.
node_id
The node id.
handle_index
The index of the handle, from 0 to handleCount - 1 from the call to hapi.getAssetInfo.
start
First index of range. Must be at least 0 and at most hapi.HandleInfo.bindingsCount - 1.
length
Must be at least 1 and at most hapi.HandleInfo.bindingsCount - start.
Returns handle_binding_infos_array as a list
of hapi.HandleBindingInfo.