Shading Kit for Maya and Arnold by Efthymis B.
- Download the files.
- Copy the folder
ShadingKit_python2
toC:\Users\<UserName>\Documents\maya\scripts
or in your custom script directory.- Create a shelf button and add the following code in the
Command/Python
tab:try: reload(runUI) except NameError: from ShadingKit_python2 import runUI(or copy the code in the Script Editor, highlight everything and then Click, Drag and Drop it in the shelf)
- Download the files.
- Copy the folder
ShadingKit_python3
toC:\Users\<UserName>\Documents\maya\scripts
or in your custom script directory.- Create a shelf button and add the following code in the
Command/Python
tab:import importlib try: importlib.reload(runUI) except NameError: from ShadingKit_python3 import runUI(or copy the code in the Script Editor, highlight everything and then Click, Drag and Drop it in the shelf)