How to make a collision with two CharacterController?

if two CharacterController touch each other,function OnCollisionEnter() and OnControllerColliderHit() didn’t trigger.
How can I solve the problem? :cry:

Help!~~~~ :cry: :cry: :cry:

I remember “solving” that problem with a quick fix by using triggers… OnTriggerEnter + tags work wonders :stuck_out_tongue:

If you want more than just detecting the collision, I sugest adding colliders manually.

I already use Box Collision instead of CharacterController!!!
Use Translate() instead of Move()
Use (Collision.contacts[0].Normal.y > 0) instead of isGround.

I have to do these,unity doesn’t support trigger function for two CharacterController~~~~What a pity````