Hey, I’ve added executable to applications. Opened houdini via launcher succesfully, but clicking any of menus is creating this error, any suggestion what is not configured? Im starting with ayon and Im more houdini td than pipeline td and Im curious how it does work, because I cant see any .json in my packages, is there some more depth explanation as Im curious
It’s hard for me to tell what has gone wrong on your side.
But, I can explain how it works for you.
- Once you have your bundle configured. e.g. having addons, dependency package and launcher… you may use AYON’s bootstrap to get started.
- On starting the launcher, it downloads your addons from the server.
- On Launching Houdini from the Launcher, the following steps will occur:
- Houdini addon
startup
folder will be added toHOUDINI_PATH
- In that
startup
folder,- we have added
pythonrc.py
scripts that will install the AYON Houdini Host. where you’ll be able to doimport ayon_houdini
- we have
MainMenuCommon.xml
that addsAYON
menu to your Houdini.
- we have added
- Houdini addon
Once you get familiar with you can learn about other things that happen when installing AYON host into your DCC. e.g. registered callbacks and going through what happens inside the install
method.
For reference:
- what’s inside
startup
folder: ayon-houdini/client/ayon_houdini/startup - what’s inside
install
method: HoudiniHost.install