Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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)