Skip to content

Instantly share code, notes, and snippets.

@kpprt
Created March 7, 2016 18:14
Show Gist options
  • Save kpprt/7ef08ae4cebda0886a45 to your computer and use it in GitHub Desktop.
Save kpprt/7ef08ae4cebda0886a45 to your computer and use it in GitHub Desktop.
Render all selected nodes one after another in Nuke
import nuke
for n in nuke.selectedNodes():
if n.Class() != 'Write':
continue
print 'Executing ' + n.name()
nuke.execute(n)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment