Houdini 20.0 hapi

hapi.getParmTagValue function

Get the tag value on a parameter given the tag name.

Usage

getParmTagValue(session: hapi.Session, node_id: int, parm_id: int, tag_name: str) → int

Get the tag value on a parameter given the tag name.

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.

parm_id

The parm id.

tag_name

The tag name, either known or returned by hapi.getParmTagName.

Returns tag_value as a int.

hapi