Version: 2017.3
public Transform transform ;

Descripción

The transform that was hit by the controller.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnControllerColliderHit(ControllerColliderHit hit) { Debug.Log("I'm colliding with: " + hit.transform.name); } }