Houdini 20.0 hapi

hapi.getHandleInfo function

Fill an array of hapi.HandleInfo structs with information

Usage

getHandleInfo(session: hapi.Session, node_id: int, start: int, length: int) → list of hapi.HandleInfo

Fill an array of hapi.HandleInfo structs with information about every exposed user manipulation handle on the 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.

start

First index of range. Must be at least 0 and at most hapi.AssetInfo.handleCount - 1.

length

Must be at least 1 and at most hapi.AssetInfo.handleCount - start.

Returns handle_infos_array as a list of hapi.HandleInfo.

hapi