Houdini 20.0 hapi

hapi.getComposedObjectList function

Fill an array of hapi.ObjectInfo structs.

This is best used with hapi.composeObjectList with.

Usage

getComposedObjectList(session: hapi.Session, parent_node_id: int, start: int, length: int) → list of hapi.ObjectInfo

Fill an array of hapi.ObjectInfo structs.

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 parent node id.

start

At least 0 and at most object_count returned by hapi.composeObjectList.

length

Given object_count returned by hapi.composeObjectList length should be at least 0 and at most object_count - start.

Returns object_infos_array as a list of hapi.ObjectInfo.

hapi