is there a way to "stack" animations on top of each other?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By AfterCadaver

My Problem

I want my character to perform actions that would require two or more animations on top of each other, such as charging and walking.

I would have a walking left animation and I would have a charging up energy animation for an attack. I can’t find a way to play them both at the same time with the same animation player. does anyone know how?

:bust_in_silhouette: Reply From: Calinou

You can either use two AnimationPlayer nodes at the same time or use the AnimationTree node (which is more complex).

Using multiple AnimationPlayers will work as long as different properties are being animated. On top of that, AnimationTree is also able to blend different animations together so you can animate the same property with multiple animations at the same time.