Skip to content

Instantly share code, notes, and snippets.

@mattebb
Last active December 12, 2022 18:06
Show Gist options
  • Save mattebb/5217818 to your computer and use it in GitHub Desktop.
Save mattebb/5217818 to your computer and use it in GitHub Desktop.
Toggle Manual cook in Houdini
if hou.updateModeSetting() == hou.updateMode.Manual:
hou.setUpdateMode(hou.updateMode.AutoUpdate)
elif hou.updateModeSetting() == hou.updateMode.AutoUpdate:
hou.setUpdateMode(hou.updateMode.Manual)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment