Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

menu.py 485B

123456789101112131415
  1. # kellerPluginCore
  2. import kellerPluginCore
  3. kellerPluginCore.start( os.path.join( nuke_path ,"pythonpluginsUI") )
  4. # cryptomatte_utilities
  5. import cryptomatte_utilities
  6. cryptomatte_utilities.setup_cryptomatte_ui()
  7. # searchReplacePanel
  8. import SearchReplacePanel
  9. def addSRPanel():
  10. myPanel = SearchReplacePanel.SearchReplacePanel()
  11. return myPanel.addToPane()
  12. nuke.menu('Pane').addCommand('SearchReplace', addSRPanel)
  13. nukescripts.registerPanel('com.ohufx.SearchReplace', addSRPanel)