Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 407 Bytes

readme_nuke.md

File metadata and controls

19 lines (13 loc) · 407 Bytes

Nuke Install

  • extract module multi_script_editor to PYTHONPATH

    Example: {HOME}/.nuke/multi_script_editor

  • Add next code to menu.py:

import multi_script_editor

# add to menu
menubar = nuke.menu("Nuke")
toolMenu = menubar.addMenu('&Tools')
toolMenu.addCommand("Multi Script Editor", multi_script_editor.showNuke)

# create new pane
multi_script_editor.showNuke(panel=True)