I am trying to make a double3 attribute, with 3 children double attributes under it, kinda like a "Translate" attr with the "translateX", "translateY", "translateZ" under it., so you can access it as a tri double, or each part individual.
According tot eh docs it should just be something like:
addAttr -dt "double3" -ln "myColor" nurbsSphere1;
addAttr -at "double" -longName "myR" -p ("myColor") nurbsSphere1;
at which point I get an error, unable to find Parent attribute.....
Any ideas?
I've been able to do things like:
setAttr nurbsSphere1.MyColor -type "double3" 1.1 2.2 3.3;
getAttr nurbsSphere1.myColor;
and I can see it in the connection editor, but I just can't seem to make child double's....please help!
-thanks
comet