Houdini7 Posted December 29, 2019 Share Posted December 29, 2019 Hi, is there a possibility to make a shortcut for the mantra render view pause button? Did not find anything in the keyboard manager unfortunately. Thanks for the help! Quote Link to comment Share on other sites More sharing options...
bunker Posted December 30, 2019 Share Posted December 30, 2019 (edited) you can do that with some Python on a shelf tool, and assign a keyboard shortcut: ipr=hou.ui.paneTabOfType(hou.paneTabType.IPRViewer) if ipr.isPaused(): ipr.resumeRender() else: ipr.pauseRender() also usefull, ipr.startRender() ipr.killRender() Edited December 30, 2019 by bunker Quote Link to comment Share on other sites More sharing options...
Houdini7 Posted December 30, 2019 Author Share Posted December 30, 2019 8 hours ago, bunker said: you can do that with some Python on a shelf tool, and assign a keyboard shortcut: ipr=hou.ui.paneTabOfType(hou.paneTabType.IPRViewer) if ipr.isPaused(): ipr.resumeRender() else: ipr.pauseRender() also usefull, ipr.startRender() ipr.killRender() Ah, cool. Thank you! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.