Re: [Nuke-users] picking a knob from inside a group and adding to current group

2017-03-17 Thread Bruno-Pierre Jobin
Hey Darren, Take a look at this snippet. I think it does what you want. Cheers Bruno # group = nuke.toNode('Group1') group.begin() # Enter the group bd = nuke.toNode('BackdropNode1') colorPicker = nuke.Color_Knob('position','Position') # Create a color

[Nuke-users] picking a knob from inside a group and adding to current group

2017-03-16 Thread Darren Coombes
Say i have a node ContactSheet1, and its inside a group called Group1. In the Group1 Panel, i want to pick the following knobs from ContactSheet1, simililair to how you do it when making a gizmo, but the knobs would be added on node creation through python? rows columns width height Thanks.