updateModeSetting()
→ hou.updateMode enum value
Houdini’s update mode determines when it will recook its nodes after you make parameter changes. When it is Auto Update, it will recook whenever any parameter changes. When it is On Mouse Up, it will not recook while you are tuning a parameter with a viewport or ladder handle until you release the mouse. When it is Manual, it will only recook when you press the update button in the status bar.
Note that this function is named updateModeSetting because
hou.updateMode refers to the submodule containing enumeration values.
This function used to be in the hou.ui submodule, but it was moved
into the main hou
module because it also applies to a non-graphical
Houdini.
>>> # Prevent Houdini from cooking any nodes. >>> hou.setUpdateMode(hou.updateMode.Manual) >>> hou.updateModeSetting() hou.updateMode.Manual
See also |