I have an animation tree. Where, when the character dies, I want to play a random death animation from 4 different death animation clip. It was easy from animation player. But animation tree is very confusing. I have attached the image below. Should I add other three death animation directly or there is other way to do it?

    BirdaoGwra
    i find the transition node easier to work with. it's also nice for blending when you want to say, move your legs while shooting, since you can filter the leg bones of the moving animation and blend that animation with your shooting. Basically I prefer messing with the states in logic but here's how I would do it.

    Build a blend tree for your death states with each animation feeding into a transition with five states, including one for being not dead. Then you just code the death in your logic, with a variable that rolls a random number between 0 and 3, then you select that animation on death.