Last active
December 18, 2015 12:59
-
-
Save sanfx/5787169 to your computer and use it in GitHub Desktop.
this simple script creates backdrop for selected nodes and name it based on the read node in selection.
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
import nuke | |
sel = nuke.selectedNodes() | |
if sel: | |
# create backdrop for selection | |
bckDrop = nukescripts.autoBackdrop() | |
for eachNode in sel: | |
if eachNode.Class() == 'Read': | |
bckDrop.setName(eachNode.name(), uncollide=True) | |
else: | |
print nuke.message("No node selected") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment