Skip to content

Instantly share code, notes, and snippets.

@taikomatsu
Created May 14, 2023 23:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taikomatsu/19c4414cfeb8c4ab866dcaa2218d573d to your computer and use it in GitHub Desktop.
Save taikomatsu/19c4414cfeb8c4ab866dcaa2218d573d to your computer and use it in GitHub Desktop.
Render all selected Write nodes by project setting frame ranges.
start = int(nuke.Root().knob('first_frame').getValue())
end = int(nuke.Root().knob('last_frame').getValue())
step = 1
for o in nuke.selectedNodes():
nuke.execute(o, start, end, step)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment