Hey,
I am trying to manipulate the write a point3 value for translate using python .
a=nuke.createNode("Card3D")b=a.knob("translate")b.setValue()
It just takes a float value , how would I enter a point3 value to control xyz seperately
easiest way would be like this:
a = nuke.Card3D ("translate {1 1 1}")
b.setValue(1,0)b.setValue(1,1)b.setValue(1,2)
would also work if you need to set them individualy