Heya, I’m creating an animation blueprint which blends between full body animations, which makes this a fairly simple asset. However, I am implementing a one shot Attack and Flinch animation and I want to find the best practise for doing this, that is stable, optimised, and responsive.
Sure, I could flick on a Boolean “Is Attacking” / “Is Flinching” and let the state machine handle the transition, but this is clearly a very poor way to do this, as it is dependant on the state machine tick to pick up on the bool before I turn it off again. I’d rather have a solution where i can fire this specific animation, once, and it can blend in and out of my existing state machine.
So just to be clear, I’m not looking for hacky ways to make this work. I am on a hunt for a best practise method that I can use to treat these animations.
Thank you in advance!