How to add boolean values to different animations?
I am making a 2d top-down game, and the character will always be moving one of four different direction; up, down, left, and right. I need to add the boolean parameter to each different animation so I can switch between them in the code. I have the animations made, and the boolean parameters created, but I have no idea how to connect the two so I cannot edit when to use which animations in the code. How do you connect the parameters to the separate animations?
I don't have a script for it yet I cant write any code for it because the animations are not connected to the booleans
Not sure I understand but can you not just create a blend tree with transitions to different animations depending on the bools?
Yes that is what I want to do but I cannot figure out how