An_pi Posted October 1, 2019 Share Posted October 1, 2019 (edited) Hi Is it possible to "import" an HDA from disk, via python? and how? Much like we can "Import" example assets from the documentation. Edited October 1, 2019 by An_pi Quote Link to comment Share on other sites More sharing options...
3dome Posted October 1, 2019 Share Posted October 1, 2019 http://www.sidefx.com/docs/houdini17.5/hom/hou/hda I'm pretty sure you can find everything you need for this there or in the DIGITAL ASSETS section in general 1 Quote Link to comment Share on other sites More sharing options...
animknight Posted October 2, 2019 Share Posted October 2, 2019 Hi, As Dom mentioned, it's all in the docs but here's an example if needed. # This code is the equivalent of running Assets -> Install Asset Library hou.hda.installFile('path_to_your_hda_file_on_disk') # Then you could create the HDA as you would normally with any other node hda_node = hou_parent.createNode("OperatorType”, “Name”) # Operator Type is your hda type -J 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.