Last active
December 16, 2015 14:19
-
-
Save draconiansolo/5447834 to your computer and use it in GitHub Desktop.
Script for opening all your group nodes' schematics on Nuke.
This file contains 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
#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