Hi,
I have the following problem and hope that someone here can help me. I have retargeted the ThirdPersonCharacter (Manny) to my Metahuman and the following problem always happens:
The legs of the metahuman do not move and just slide across the ground.
Same issue here. Tried completely retargeting using IK rig and IK Retarget but it’s still not helping (Tried completely doing bone by bone too) still same issue. as soon as i change the skeleton - it all works. it is just the legs and feet that do not want to cooperate.
I have a similar problem when trying to retarget from mixamo to Quinn in UE5, feets are stuck to the ground but the legs are moving, here are some unresolved posts with what looks like the same issue.
This happened in my project when I tried to use the old manequin animations on the new one… And it seems to be some problem with the IK thingy… Try deactivating the control rig node on the animation blueprint and see if it works. Like this:
The issue with feet sticking to the ground usually has the reason that you did not retarget the animations for the IK bones e.g. ik_foot_l, ik_foot_root… . If you retarget make sure that those move as well, and setup ik retarget chains for those bones:
Thank you so much, the last part worked for me. This is what I did, after retargeting with IK I opened the newly created Animation Blueprint->control rig and changed the root in “Full body IK” from “pelvis” to “Animation root”.
That fixed the leg issue for me and its working beautifully now.
To get this working you need to open up the retargeted animation blueprint, then in the anim graph, open the control rig node. Then you’re going to have to delete everything other than the red node on the far left. After that copy what I have put in and make sure everything is connected to the sequence.
I had same kind of issue when I was retargeting paragon animations to manny. Turned out to be (LeftFoot, RightFoot…)IK setting having FK translation mode defaulting to none in the IKRetargeter, which lead to feet being stuck to the ground. Changing it to Absolute (maybe globally scaled is better at some cases?) and re-exported animations and works like a charm.
See IK_UE4_Mannequin and RTG_UI4Manny_UE5Manny in Mannequin_UE4/Rigs if you need a point of reference.
Does anybody know of a tutorial that gets this working in UE5.2? I’ve been trying several tutorials and answers in this post but so far nothing seems to be working. The best I can get is the feet will move, but they don’t interact properly with the environment and go through it.
Hello, so I found a pretty solid workaround that enables IK under ALL circumstances (including for the UE4 Manny skeletons).
This is all in the Animation Blueprint:
Create a variable of the ALPHA in the AnimGraph
In the Event Graph, add another PIN to the SEQUENCE (by default, there are three)
Add a BRANCH to that PIN.
In the CONDITION (red node) of that BRANCH, use a LESS_THAN_EQUAL node, attaching the GroundSpeed variable (it is one of the default variables found to the left, nested in the Essential Movement Data column) to the upper PIN, and a float of 4 in the lower PIN.
Drop the ALPHA variable as SET twice. For “TRUE”, set ALPHA as 1, for “FALSE”, set ALPHA as 0.
Basically what you’re doing is disabling IK when the character MOVES, and enable IK when the character does NOT MOVE.
Of course you can add an interpolation to smooth it out.