readOnError v1.0
This location is for Registered Users Only.
Perhaps you need to login or register.
Contributor: Giorgio Pitino
Change the on error knob for all the read nodes in your node graph in one click
Requirements:
9.0 or later
9.0 or later
18 Mar 2016
73
This Python script allows you to change the on error knob for all the read nodes in your node graph in one click.
You can choose between :
1. error
2. black
3. checkerboard
4. nearest frame
To install:
1. Put readOnError.py in your plugin path
2. Add the following in your menu.py
import readOnError
scriptsMenu = nuke.menu('Nuke').addMenu('Scripts')
readError = scriptsMenu.addMenu('Read Nodes On Error')
readError.addCommand('Error', 'readOnError.setError()')
readError.addCommand('Black', 'readOnError.black()')
readError.addCommand('Checkerboard', 'readOnError.checkerboard()')
readError.addCommand('Nearest frame', 'readOnError.nearestFrame()')
Please login in order to download these files.