Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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)