Python Panel in houdini to copy/paste houdini nodes and setup between users
Here is a short demo showing the tool and how it's working: https://vimeo.com/777696262
- Clone the repository and put it into a folder called "python3.9libs" located in your preference directory. If you don't have one, you can create one.
- Set the LOCATION_PATH variable in the utils.py to where you want the files to be stored. It can be a network location or a local one
- Then, inside of Houdini, go to windows -> python panel editor, create a new panel and type this code in the script window:
from NodesBrowser import nodesbrowser, utils, treemodel, filtering
from PySide2 import QtWidgets
def createInterface():
return nodesbrowser.NodesBrowser()
- You should now get a new pythonPanel which will show you the interface as shown in the video.