Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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)