import maxwell
nodesMenu = nuke.menu('Nodes')
newMenu = nodesMenu.addMenu('Maxwell Utilities', 'maxwell_icon.png')
newMenu.addCommand('MxiMixer', 'nuke.createNode("MxiMixer")', 'ctrl+m', 'maxwell_icon.png')
newMenu.addCommand('MxiRender', 'nuke.createNode("MxiRender")', '', 'maxwell_icon.png')
newMenu.addCommand('MxiMask', 'nuke.createNode("MxiMask")', '', 'maxwell_icon.png')
newMenu.addCommand('Reload All', 'maxwell.reloadAllReads()', '', 'maxwell_icon.png')
newMenu.addCommand('Reload Selected', 'maxwell.reloadSelectedReads()', '','maxwell_icon.png')
newMenu.addCommand('Color Adjustments', 'maxwell.mxihue()', '', 'maxwell_icon.png')
|