Inheritance |
|
See using a verb for more information.
Methods ¶
loadParmsFromNode(sopnode)
Initializes all the parameters of this verb from the parameters of a specific hou.OpNode. Useful for cloning an existing node instance’s behavior.
loadParmsFromNodeAtTime(sopnode, time)
Initializes all the parameters of this verb from the parameters of a specific hou.OpNode at a given time. Useful for cloning an existing node instance’s behavior.
parms()
→ dictionary
Returns a dictionary of parameter name / value pairs currently set on this verb. This will be the complete list understood, including defaults. Multiparms are represented as a sub list of dictionaries.
This uses ParmTuple names, not channel names.
setParms(parmdictionary)
Updates a subset of parmeters on this verb with those specified in the dictionary. Exceptions are raised if attempts are made to set non-existent parameters or with incorrect types.
This uses ParmTuple names, not channel names. So for a transform
you would use xform.setParms({'t':(2,0,0)})
rather than tx
.
minNumInputs()
→ integer
Returns the minimum number of geometry inputs required for this verb to compute successfully.