Created
May 14, 2023 23:53
-
-
Save taikomatsu/19c4414cfeb8c4ab866dcaa2218d573d to your computer and use it in GitHub Desktop.
Render all selected Write nodes by project setting frame ranges.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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