Version: 2017.3
public characterController controller ;

Descripción

The controller that hit the collider.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnControllerColliderHit(ControllerColliderHit hit) { hit.controller.detectCollisions = false; } }