Skip to content

Instantly share code, notes, and snippets.

@draconiansolo
Last active December 16, 2015 14:19
Show Gist options
  • Save draconiansolo/5447834 to your computer and use it in GitHub Desktop.
Save draconiansolo/5447834 to your computer and use it in GitHub Desktop.
Script for opening all your group nodes' schematics on Nuke.
#you can paste this to your script in settings/python/onScriptLoad
for n in nuke.allNodes("Group"): # for all the nodes in root that are groups
print n.name() # write names on the script console
if n.name()[0]=="_": # if the name of the group starts with underscore
nuke.showDag(n) # show their schematics
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment