Jump to content

Update mode from “Always” to “Never.”


Recommended Posts

Hi, if you would like only one key to toggle the states, you might want this script. I will copypaste it from the sidefx forum, original by Archie is linked below

 

You can create the simple script for toggle between “Auto Update” and “Manual update”, for example:

mode = hou.updateModeSetting().name()
if mode == 'AutoUpdate':
	hou.setUpdateMode(hou.updateMode.Manual)
if mode == 'Manual':
	hou.setUpdateMode(hou.updateMode.AutoUpdate)

https://www.sidefx.com/forum/topic/21292/?page=1#post-99649

Link to comment
Share on other sites

8 hours ago, ikoon said:

Hi, if you would like only one key to toggle the states, you might want this script. I will copypaste it from the sidefx forum, original by Archie is linked below

 

You can create the simple script for toggle between “Auto Update” and “Manual update”, for example:


mode = hou.updateModeSetting().name()
if mode == 'AutoUpdate':
	hou.setUpdateMode(hou.updateMode.Manual)
if mode == 'Manual':
	hou.setUpdateMode(hou.updateMode.AutoUpdate)

https://www.sidefx.com/forum/topic/21292/?page=1#post-99649

Thanks, that's helpful, but I don't want to customize anything too much at work. I was just curios which keys are being used mostly amongst TDs.

Cheers

Janis

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...