papsphilip Posted August 27, 2021 Share Posted August 27, 2021 i would like to have a button to trigger a cook from my HDA. How can i go about that? Do i need a python script? Quote Link to comment Share on other sites More sharing options...
dleonhardt Posted August 30, 2021 Share Posted August 30, 2021 Three ways to do that: 1. You can add TOP cook controls to any node https://www.sidefx.com/docs/houdini/tops/cooking.html#addingcookcontrols 2. Promoting the cook button on your TOP Network to the top level of your HDA 3. Or if you want to cook a specific node inside of the TOP Network, a small Python snippet like this as callback for a button n = hou.node('/path/to/topnode') n.executeGraph(False,False,False,False) 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.