Match tools to IK create strange values on ball roll

Is there something I’m doing wrong?

We found this issue already! It happened on last version (5.13), and will be fixed in the next kangaroo version.

There’s a cycle happening on the match tool, which makes the ballRoll go crazy.

One workaround until getting the next version is to set the Pivot Ctrls to anything else than None:

Or - if you wanna fix it in the python code yourself, you could go into the python file of armLeg_v42.py, and change this line:

sDummyAnkle = cmds.duplicate(self.cAnkleRev.sCtrl, po=True)[0]

to

sDummyAnkle = cmds.duplicate(sToeAttrGrp, po=True)[0]

This will make it not create the cycle on the match tools

Thanks @ThomasBittner

Fixing this in the code solved our problems