This script is free. Use it on your own risk.
### INSTALL ###
To install the script simply copy "bi_selectionSet.py" to your Nuke scripts folder.
On windows usualy is here: C:/Users/(user)/.nuke
On mac usualy is here: /Library/Application Support/NUKE/(version)/plugins
Tip:If you have trouble finding the place for it, you can use the code bellow to find all Nuke plugin paths on your system. Apply code in Nuke script editor to view the result:
import nuke
print nuke.pluginPath()
If you dont have any of my tools already, then add this code to the bottom of your Nuke menu.py:
toolbar = nuke.menu("Nodes")
borisTools = toolbar.addMenu('BI_tools')
borisTools.addCommand('Create Selection Set', "import bi_selectionSet as inst; inst.callInputs()")
If however, you already have any of my tools then add this code after this line "umbrellaMenu = toolbar.addMen('BI_tools')" in your Nuke menu.py:
borisTools.addCommand('Create Selection Set', "import bi_selectionSet as inst; inst.callInputs()")
### USE ###
-Select any node(s)
-Go to BI_tools menu on Nuke's left side and click "Create Selection Set"
### FEATURES ###
-Select node(s) from the set
-Display node(s) in panels view
-Add new node(s) to the selection set
-Remove node(s) from selection set
-By clicking on a node button it disables/enables the node
-Toggle enable/disable on all nodes from current state
-Toggle enable/disable on all nodes
Please use the Feature Requests to give me ideas.
Please use the Support Forum if you have any questions or problems.
Please rate and review in the Review section.