Version: 2017.2
public Vector3 point ;

설명

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); } }