Houdini 11 Houdini Object Model hou

Evaluate a parameter, given either an absolute or a relative path to it. Relative path searches are done from the node returned by . This function is a shortcut for hou.parmTuple(path).eval().

Usage

evalParmTuple(path) → tuple of int, float, or str, or hou.Ramp

The return type will depend on the type of the parameter.

When a parameter is evaluating, hou.pwd returns the node containing that parameter, so hou.evalParmTuple() can be used inside expressions to perform relative parameter references.

This function throws a hou.NotAvailable exception if you call it from mplay.

Replaces

  • ch expression function
  • chramp expression function
  • chs expression function

Related topics