get_attrib_values
Read attribute values from a Houdini node as a paginated flat array, specifying node path, attribute name, and class to fetch a specific slice of data.
Instructions
Read attribute values as a flat array with pagination.
For spot-checking a few values prefer sample_geometry — it returns a representative spread of points with all their attributes in one call. Use get_attrib_values when you need a specific slice of one attribute.
Values are element-major: for a float3 attribute every 3 consecutive values belong to one element. Check has_more and increment start to read subsequent pages.
Args: node_path: Node path. attrib_name: Attribute name. attrib_class: "point", "prim", "vertex", or "detail". start: First element index to return. count: Max elements per page (default 200).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | ||
| start | No | ||
| node_path | Yes | ||
| attrib_name | Yes | ||
| attrib_class | No | point |