I'm making a simple game using the Physics Ragdoll example from the store but using a controller instead of the mouse and so far everything is going great! But I'd like to add a second player.
In the past I'd just clone all the objects required, call them object_p2 and then copy the code used for object_p1 and change items and controllers used to suit p2. It works just fine but it is a chore, especially if I want to add a p3 or p4.
What I'd ideally like to do is use the same objects and code used but be able to apply it to other players but I don't really know how.