I'm working on a multiplayer platformer for my current project, and I've been having an issue. I'm working with 4 players on the same screen, and everything works fine for the most part except for some problematic interactions:
- You can't jump when a player is on top of you
- You can't push or be pushed by other players
I'm trying to get a system where in theory, 4 players could sit on each other in a stack and the person on the bottom can carry everyone on their back. Sounds silly, but I'm trying to go for something more interesting besides just bouncing players off each other's heads. Maybe I can use rigidbodies as children to check for collisions and then apply forces as needed? I remember attempting this before but no luck yet.
Any ideas?