I’m working on creating a third person game but am having problems with my double jump animation. The second jump has to have a different animation than the first. how do I do this?
You’ll need to hook up a new node in the anim graph of your animbp. For the thirdperson template project, there is a start and end jump node as well as a loop. You’ll want to transition into your second animation from any of those based on a bool that you need to set while the player is in air.
Thanks for the answer!