Houdini 20.0 hapi

hapi.setAttributeStringUniqueData function

Set multiple attribute string data to the same unique value.

Usage

setAttributeStringUniqueData(session: hapi.Session, node_id: int, part_id: int, name: str, attr_info: hapi.AttributeInfo, data_array: list of str, data_length: int, start_index: int, num_indices: int) → bool

Set multiple attribute string data to the same unique value.

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

part_id

Currently not used. Just pass 0.

name

Attribute name.

attr_info

hapi.AttributeInfo used as input for what tuple size. you want. Also contains some sanity checks like data type. Generally should be the same struct returned by hapi.getAttributeInfo.

data_array

A string

data_length

Must be the length of string data.

start_index

Must be at least 0 and at most hapi.AttributeInfo.count - start.

num_indices

Must be at least 0 and at most hapi.AttributeInfo.count - start.

hapi