How should I go about rigging characters in my game?
Hello!
Here's my problem: I (and a couple of friends) are making a 2D top-down Unity game. The general style is somewhat like the classic Pokemon games/classic Zelda, but 32x32. My problem is that I want to be able to animate the character in any way I want without having to do new sprites for animations (walking, idle, cheer, etc. etc.) I don't mind spending a couple more hours on working on something if I can do anything I want with it.
That sounds easy, just split the parts (torso and head, arms, legs) into different GameObjects and just animate them, and mess around with the SpriteRenderer's order in layer for achieving some other cool effects (eg. one leg going in front of the other while walking).
I have a problem with the solution I just said, how would I go about doing all 4 directions my character can look at? Do I need to re-do all animations? (I'm up for it, but if there's an easier solution, well...)
The game is open-world with quests if it matters.
Note: I tried using rigging my character with the skinning editor (painstakingly making everything perfectly good and painting weights on a 2D character where you can't auto-generate the vertices because it's so small and it joins the different limbs up so you do it by hand). That sort-of worked, but it isn't really made for my type of game, as switching sprites is gonna be a pain in the ass the way I see it. I'd much rather use the Unity Animation editor, if possible.