Search

Your search for Scott Chambers returned 7 results.

LensSim

Contributed by Scott Chambers

Quick and dirty lens aberration gizmo, use as a starting point to create more true to life lens simulations.

UnsharpMask

Contributed by Scott Chambers

Works very much like the Photoshop version.

REDNoise

Contributed by Scott Chambers

RED Cine sensor noise simulation (goodbye film grain, hello sensor noise)

Notes for PythonForArtists_PythonPanel_UI - video tutorial

PythonForArtists_PythonPanels_UI (legacy) - Frank Rueter click here for video import re class SearchReplacePanel( nukescripts.PythonPanel ): def __init__( self ): nukescripts.PythonPanel.__init__( self, 'Search and Replace', 'com.ohufx.SearchReplace')   # CREATE KNOBS self.nodesChoice = nuke.Enumeration_Knob( 'nodes', 'Source Nodes', ['all', 'selected']) self.searchStr = nuke.String_Knob('searchStr', 'Search for:') self.update = nuke.PyScript_Knob('update', 'Update') self.info = nuke.Multiline_Eval_String_Knob('info', 'Found') self.info.setEnabled( False ) self.replaceStr = nuke.String_Knob('replaceStr', 'Replace with:') self.replace =…

Switching Nodes with $gui variable

Switch node states or node tree branches automatically between GUI and render use with the $gui variable Have a slow operator or process in your script that you want to be off when working but on when you send it to the farm or render locally via the command line? Having trouble remembering to switch these functions on? Or do…

Notes for PythonForArtists - SimpleUserInterfaces (legacy) - video tutorial

PythonForArtists_SimpleUserIntervaces (legacy) - Frank Rueter click here for video Nuke has pretty simple python commands that let you create simple user interfaces - without having to dive too much into python panels.…

10 tips to optimising Nuke and creating efficient workflows

Speed matters, 10 tips to make your scripts fly.