Last active
December 12, 2022 18:06
-
-
Save mattebb/5217818 to your computer and use it in GitHub Desktop.
Toggle Manual cook in Houdini
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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