nuke
Nuke: BellTools
I’ve just uploaded a small collection of nuke scripts and gizmos that I find useful. I shall continue to update the .zip file as-and-when I have more tools. Find them here
VRay | Softimage | Nuke
I’ve recently managed to start having a play with VRay in Softimage and Nuke too. The fruits of my efforts are in my new gallery section
Multi Paster
Oddly Nuke doesn’t allow you to copy a node and then paste it to multiple other nodes. This script does just that. #paste to multiple selection selected = nuke.selectedNodes() for eachNode in selected: n = nuke.toNode(str(eachNode.name())) n.knob("selected").setValue(True) nuke.nodePaste("%clipboard%")