How to do a transition for a double jump animation?

Hi, i’m trying to do a trasition so my character go to a second animation when is doing a second jump. he jumps with a InputAction, and for a second jump i use “launch character”.

thanks

Hi

This is a logical problem and you’ll get different answers from different people.

As a simple way through, I’d say to set a boolean bIsDoubleJumping = true and start a Timer when the player presses the jump button a second time. Make this timer long enough to play the anim, when the Timer expires, clear the boolean.
Your AnimBP will keep checking for bIsDoubleJumping when playing the jump animation.
Hope this help.