Nickpwalsh Posted June 28, 2019 Share Posted June 28, 2019 Hello, I'm trying to create an HDA that can be used to learn scripting through Houdini. I wanted to be able to promote the wrangle snippet box to the interface of the HDA. It works fine except for when I make changes in the textbox on the tool and then try to save the node type. It does not save any of the changes I made. Thanks for any help on this! Cheers, Quote Link to comment Share on other sites More sharing options...
Nickpwalsh Posted June 29, 2019 Author Share Posted June 29, 2019 I figured out a way to do it. I just had to right click the parameter and make it the default. I don't know if there is a more efficient way to do this, but it should work for me. Quote Link to comment Share on other sites More sharing options...
anim Posted June 29, 2019 Share Posted June 29, 2019 one thing to be aware of when promoting wrangle's code parm is that by default it will still evaluate all node paths relative to the Wrangle node, not your asset so to access any parm on your node you would have to do chf('../parm'); instead of chf("parm"); to fix that, make sure you modify Evaluation Node Path on your wrangle to point to your asset, so something like .. if your asset is directly one level above the wrangle then using chf('parm') in the snippet on your HDA directly will work 1 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.