Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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)