Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


point

The impact point in world space.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.PhysicsModule
public Vector3 point { get; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ void OnControllerColliderHit(ControllerColliderHit hit) { // print the impact point Debug.Log("I impacted at: " + hit.point); }}