In-air Attack

Working on a combat system, how would I make my character have special attack that only occurs while he’s jumping? So he can regular jump a and regular attack, but when he combines the two he does a special in-air attack. Would I use AnimNotifies?

If your in the character BP try using the “is falling” node and a branch. This will tell you if the player is in the air then the branch makes a choice of which attack to use based on weather the character is in the air.

1 Like

Worked here! Thx!