Versions with this page:
Versions without this page:
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); } }