mgear-dev / mgear4

mGear v.4.x.x (python 3 ready) https://mgear4.readthedocs.io
MIT License
259 stars 91 forks source link

When using anim_utils.IkFkTransfer.execute(), only baking to FK works correctly ( includes possible fix ) #406

Open tetsuoanimation opened 2 months ago

tetsuoanimation commented 2 months ago

mgear.core.anim_utils.IkFkTransfer.execute() is called with a hard-coded switchTo value instead of the parameter given to the function.

mgear.core.anim_utils.IkFkTransfer Line 2170: ui.transfer(startFrame, endFrame, onlyKeyframes, ikRot, switchTo='fk') should probably read ui.transfer(startFrame, endFrame, onlyKeyframes, ikRot, switchTo=switchTo)

miquelcampos commented 2 months ago

Thanks for the feedback @tetsuoanimation I will check it ASAP