I want ragdolls to NOT collide with eachother but i don't want to lose the individual ragdoll collision with itself.
Tried adding all ragdolls to a layer and the children of their objects to a separate layer, as picked up from another question. Then i used the collision matrix to enable / disable collision between them, but so far i could achieve only the following results:
Ragdoll collision with another ragdoll : YES
Ragdoll collision with itself: YES
Ragdoll collision with another ragdoll : NO
Ragdoll collision with itself: NO
I want to achieve this:
Ragdoll collision with another ragdoll : NO
Ragdoll collision with itself: YES
Can it be done with the collision matrix? If so, how do I need to setup the layers? I think the layer containing all ragdoll parent objects is correct, but i am not sure about the other one.
Usecase is a simmulation in which I need the ragdolls to be able to learn to move. The simmulation needs to be ran a lot of times and it would help to run it with more than 1 ragdoll.
Answer by TheonlysiQ · Jun 05, 2020 at 11:11 PM
Physics.IgnoreCollision. Ugly but does the job.
Your answer