2D pixel top down problem

So I have hit a road block and I can’t seem to figure it out.

I am making a top down pixel 2d game. Sort of like A Link To The Past.

I am using a sprite sheet for animations, which works great.

But now I hit a problem.

How would I do armor and weapon swaps with this type of game? (top down)

Could I use anima2D to make a 2D skeleton, then attach weapons to the bone slots?
But then how would I handle 4 different walking directions? Can you swap out sprites during direction change to make it appear like I changed walking directions?

Any advice would be very helpful.

Yes, what you’ve described is a common method of animating 2D characters with equippables. You could actually build your 2D skeleton just using the Unity Hierarchy, and you could use the Animator states to move those ‘bones’ and potentially change their sorting order if need be.

1 Like