I have a character, and he has a walk1 animation and a walk2 animation, for when he's walking left and right. When the character picks up an item, I want then walk1 and walk2 animations to change to different animations.
So at the moment, it looks like:
On left button down -> Play walk1a
On right button down -> Play walk2a
But when he picks up item A, I want this to happen
On left button down -> Play walk1b
On right button down -> Play walk2b
How do I achieve this?