public Vector3 point ;

Descripción

The impact point in world space.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnControllerColliderHit(ControllerColliderHit hit) { Debug.Log("I impacted at: " + hit.point); } }