Update mode at "manual" when houdini launches

   3333   2   1
User Avatar
Member
80 posts
Joined: May 2017
Offline
Hey guys.

How do I set update mode to "manual" when houdini launches?

Thanks.

Attachments:
Selection_001.png (16.9 KB)

User Avatar
Member
2658 posts
Joined: June 2008
Offline
You can place code inside your 123.py file to run on startup.
Something like this might work...
if hou.ui.updateMode() == hou.updateMode.AutoUpdate:
    hou.ui.setUpdateMode(hou.updateMode.Manual)
else:
    hou.ui.setUpdateMode(hou.updateMode.AutoUpdate)

You can review other script options here:
https://www.sidefx.com/docs/houdini/hom/locations.html [www.sidefx.com]
Using Houdini Indie 20.5
Windows 11 64GB Ryzen 16 core.
nVidia 3060RTX 12BG RAM.
User Avatar
Member
80 posts
Joined: May 2017
Offline
It worked.

Thanks a lot.
  • Quick Links