Update mode at "manual" when houdini launches

   1145   2   0
User Avatar
Member
66 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
2563 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.0
Windows 11 64GB Ryzen 16 core.
nVidia 3050RTX 8BG RAM.
User Avatar
Member
66 posts
Joined: May 2017
Offline
It worked.

Thanks a lot.
  • Quick Links