Can I use two different animation blueprint in the same third person character blueprint?

So I have a character which is already rigged manually in maya, but the heirachy is different from UE5 default character, which is not allowing me to retarget the Ik animation. Also I have already done some animation with the rig and I want to keep them. I have download a animation blueprint which is based in the default character, therefore some of the function is not working for now. I think the problem is coming up with the IK rig.

Right now I’m trying to doing the auto rig with maximo, and that means I can’t use the animation I’ve already done.

So is there any solution that I can use these two animation blueprint in the same third character blueprint?

Also I want to know what is the standard workflow in the industry if they have some unique animations for the character done by maya. The goal I’m looking for is a game called Kena: Bridge of spirits. Does the developer always have to follow the rig principle in UE, or is it possible to fix with blueprint?

You can only use a single Animation BP per skeletal mesh instance.

1 Like

Is it possible that I can swtich the Animation BP with different with different movement?

You can, but that will reset everything in the animation BP each time you switch.

Say you’re in a crouch pose and switch to a new BP. The new BP will change your current pose to its default, then transition to the state pose.

It sounds not ideal :smiling_face_with_tear:. But can you still briefly describe how to do it?
When you say chage to default is that means the T or A-pose based on the skeleton mesh I import?

Animation BP has an Animation Graph which uses your character classes states to determine what animation sequence to play. Your Locomotion is typically handled by a state machine and transition rules.

A State Machine has an Entry which routes to a default animation sequence/pose. In the above setup the default state is an Idle animation (MM_Idle).

MM_Idle is an simple animation sequence in which the skeleton is standing and has subtle movements.


Now lets say I have another Anim BP I want to switch to and its State Machine has a default entry pose of Prone.


When I switch to this new Anim BP, regardless of what states are set to, the character will snap to the prone animation and then transition to whatever the states say it should be.


To change animation bp class use Set Anim Instance Class

2 Likes

It is really clear and helpful. Thank you so much!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.