so new area for me...lol, dealing with adding an anim layer and adding some nodes to it
creating layer no big, but when I add the node, like a bone, it adds all the bone attrs BUT those that are keyed
thru pymel
for x in nodesToAdd:
layer.addMember(x) #works, but doenst add the channelbox attrs
for c in "tr":
for a in "xyz":
attr = pm.PyNode("{0}.{1}{2}".format(str(x), c, a))
layer.addMember(attr) # doesnt work at all
that doesnt work at all