appendclip v1.0
This location is for Registered Users Only.
Perhaps you need to login or register.
Contributor: saurabh sameer
This small scripts puts all your selected read node into a single append node in that order,thus giving you a small time line of nodes,user can scrub through.
Requirements:
4.8, 5.0, 5.1, 5.2, 6.0, 6.1 or later
Windows
4.8, 5.0, 5.1, 5.2, 6.0, 6.1 or later
Windows
28 Jul 2010
192
Here the Function :
1 2 3 4 5 6 7 8 9 10 11 |
def appendallclips(): sw=nuke.nodes.AppendClip() an = [n for n in nuke.allNodes() if n.Class() == "Read"] s=len(an) print s x=0 while x != s: sw.setInput(x,an[x]) x=x+1 |
and to add the button in your menu py.
1 2 |
mymenu=nuke.toolbar('Nodes',) mymenu.addCommand('Clip Line UP','appendallclips()') |
Please login in order to download these files.
Comments
Is that possible to follow the Read node's sequence shot name in order?
example : all clip are following from sc01, sc02, sc03 .....
If this is work that are perfectly work well~
Thanks
RSS feed for comments to this post