Houdini 20.5 Nodes APEX nodes

graph::NodeData

Gets the data for a node in an APEX graph.

On this page
Since 20.0

Gets the metadata of the node identified by nodeid in the graph.

Inputs

graph: ApexGraphHandle

The graph that contains the node to query.

nodeid: ApexNodeID

The node to query for its data.

Outputs

name: String

The name of the node.

callback: String

The type of the node.

pos: Vector3

The position of the node in its subgraph.

color: Vector3

The color of the node.

parms: Dict

A dictionary of the input parameters of the node.

tags: StringArray

An array of the tags on the node.

properties: Dict

A dictionary of the properties on the node.

output: Dict

A dictionary of the outputs of nodeid. The dictionary entries have the following key-value pairs:

  • key: name of the nodeid output

  • value: value of the nodeid output

Note

If the graph has not been invoked by graph::Compile, graph::Invoke, or graph::EvaluateOutputs, this dictionary is empty.

See also

APEX nodes