Aug
26
coloroverlay value set
Posted in: NUKE from The FoundryHi,
How is it possible to change colorOverlay of rotoshape using python. I tried the following. Although it works fine with tile color, gl_color and also as a matter of fact with the script too. However, it does not show the change in GUI. How do i get the change reflected in the GUI.
Nuke version : 6.6
Code:
col = nuke.getColor()
if not col == None:
for n in nuke.selectedNodes():
n.knob('tile_color').setValue( col)
n.knob('gl_color').setValue( col)
n.knob('colorOverlay').setValue( col)
Brgds,
kNish
Post a Comment